コード例 #1
0
ファイル: State.java プロジェクト: Diex/destino
 public void exit() {
   context.log("exiting: " + this.toString());
 }
コード例 #2
0
ファイル: State.java プロジェクト: Diex/destino
 State(Object parent) {
   this.parent = (PApplet) parent;
   this.context = (destino_01) parent;
   context.log("state created: " + this.toString());
 }
コード例 #3
0
ファイル: State.java プロジェクト: Diex/destino
 public void enter() {
   context.log("----------------------------------");
   context.log("entering: " + this.toString());
 }