Ejemplo n.º 1
0
 public ActionController(PieceVariable p, IInputGiver g, BoolVariable d)
 {
     _currentPiece = p;
     _giver        = g;
     _hardDrop     = d;
     SubscribeGiver();
 }
Ejemplo n.º 2
0
 public LineChecker(StateManager m, Board b, IntVariable s, IInputGiver giver)
 {
     _manager     = m;
     _board       = b;
     _score       = s;
     _giver       = giver;
     _checkNeeded = true;
 }