Exemple #1
0
        public Map(int id, Palette palette, int width, int height, string name)
        {
            this.id = id;
            this.palette = palette;
            this.width = width;
            this.height = height;
            this.name = name;

            Initialize();
        }
Exemple #2
0
 public Tile(Palette palette, TileInfo info, Point tileLoc)
 {
     this.palette = palette;
     this.info = info;
     this.tileLoc = tileLoc;
 }