This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.LinkedList; | |
import javax.swing.JOptionPane; | |
public class Simulador extends javax.swing.JFrame { | |
private static int TAM_MOCHILA; | |
private static int CANT_OBJETOS; | |
LinkedList<Objetos> objetos; |