//仲間クラス class PartyClass{ boolean sh;//アクティブ int chip_no;//チップNO float px,py;//P座標 int x,y;//座標 int moving_dir;//移動中の方向(上=0,下=1,左=2,右=3) PartyClass(int chip_no){ this.chip_no = chip_no; } }