Esempio n. 1
0
        public CombatBoard(LunchHourGames lhg, int hexSize, int width, int height,
                           int xOffset, int yOffset, int penWidth, bool isPointy, Color backgroundColor)
            : base(lhg)
        {
            this.lhg = lhg;
            this.gridNumbersVisible = false;

            this.grid = new LHGGrid(lhg);
            grid.LoadGraphicsContent(lhg.GraphicsDevice);

            initialize(lhg, hexSize, width, height, xOffset, yOffset, penWidth, isPointy, backgroundColor);
        }