//セルクラス public class Cell{ int gra;//グラフィックデータ int event;//イベント boolean move_flag;//通過可能フラグ Cell(int a,int b,boolean c){ gra=a;event=b;move_flag=c; } }