/* ************************************************************************** AUTORE: Simona Pappalardo MAIL: pacana@libero.it ***************************************************************************** */ import java.lang.*; import java.awt.*; public class Tabella { int occupato; int elemBaseX; int elemBaseY; int color[]; Tabella() { this.elemBaseX = 10; this.elemBaseY = 10; this.color = new int[3]; this.color[0] = Applet.color.getRed(); this.color[1] = Applet.color.getGreen(); this.color[2] = Applet.color.getBlue(); this.occupato = 0; } public void riempi(int[] cCode) { this.occupato = 1; this.color[0]=cCode[0]; this.color[1]=cCode[1]; this.color[2]=cCode[2]; } public void libera() { this.occupato = 0; this.color[0]=Applet.color.getRed(); this.color[1]=Applet.color.getGreen(); this.color[2]=Applet.color.getBlue(); } }