Example #1
0
 public KillRulesController(IKillRulesView view, Plane planeTemplate)
 {
     Plane = planeTemplate;
     _view = view;
     _view.SetController(this);
     _view.GetGraphics();
 }
Example #2
0
 public KillRuleController(IKillRulesView view, bool[,] planeMatrix)
 {
     _planeMatrix = planeMatrix;
     _view = view;
     KillPoints = new List<MatrixCoordinate>();
     _view.SetController(this);
     _view.GetGraphics();
 }