use of nars.experiment.Tetris.TetrisState in project narchy by automenta.
the class Tetris method actionsReflect.
private void actionsReflect() {
Opjects oo = new Opjects(nar);
oo.exeThresh.set(0.6f);
oo.methodExclusions.add("toVector");
// state = new TetrisState(tetris_width, tetris_height, 2);
state = // oo.the("tetris", this.state);
oo.a("tetris", TetrisState.class, tetris_width, tetris_height, 2);
}
Aggregations