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