Example #1
0
        void Start()
        {
            gameplay = new ControllerGameplay();
            graphics = new ControllerGraphics(gameplay);

            gameplay.Start();
        }
Example #2
0
        public ControllerGraphics(ControllerGameplay gameplay, Canvas canvas)
        {
            this.gameplay = gameplay;
            this.canvas   = canvas;

            Start();
        }
Example #3
0
        void Start()
        {
            gameplay = new ControllerGameplay(true);
            graphics = new ControllerGraphics(gameplay, canvas);

            StartUpdate();
        }
Example #4
0
 public ControllerGraphics(ControllerGameplay gameplay)
 {
     this.gameplay = gameplay;
     DrawMap();
 }