示例#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());
 }