DungeonMasterEngine.Helpers.BitMapMemory.BitMapMemory C# (CSharp) Method

BitMapMemory() public method

public BitMapMemory ( int xIndexOffset, int yIndexOffset, int width, int height )
xIndexOffset int
yIndexOffset int
width int
height int
        public BitMapMemory(int xIndexOffset, int yIndexOffset, int width, int height)
        {
            this.xIndexOffset = xIndexOffset;
            this.yIndexOffset = yIndexOffset;

            bitMap = new bool[width, height];
        }