예제 #1
0
파일: Map.cs 프로젝트: cpetosky/o2d-lib
        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();
        }
예제 #2
0
파일: Tile.cs 프로젝트: cpetosky/o2d-lib
 public Tile(Palette palette, TileInfo info, Point tileLoc)
 {
     this.palette = palette;
     this.info = info;
     this.tileLoc = tileLoc;
 }