├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.cfg ├── README.md ├── cities ├── NES │ ├── LA.png │ ├── Moscow.png │ └── NYC.png ├── SNES │ ├── Havana.png │ ├── Kyiv.png │ ├── LA.png │ ├── Moscow_1.png │ ├── Moscow_2.png │ ├── NYC.png │ ├── Seoul.png │ └── Toronto.png └── cities_readme.md ├── misc └── wxHexEditor_snescity.tags └── src ├── cityedit.c ├── cityedit.h ├── defines.h ├── main.c ├── pngmap.c ├── pngmap.h ├── sdl_ui.c ├── sdl_ui.h ├── sramcity.c ├── sramcity.h ├── textures.xpm ├── ui_menu.c └── ui_menu.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/Makefile.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/README.md -------------------------------------------------------------------------------- /cities/NES/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/NES/LA.png -------------------------------------------------------------------------------- /cities/NES/Moscow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/NES/Moscow.png -------------------------------------------------------------------------------- /cities/NES/NYC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/NES/NYC.png -------------------------------------------------------------------------------- /cities/SNES/Havana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/Havana.png -------------------------------------------------------------------------------- /cities/SNES/Kyiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/Kyiv.png -------------------------------------------------------------------------------- /cities/SNES/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/LA.png -------------------------------------------------------------------------------- /cities/SNES/Moscow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/Moscow_1.png -------------------------------------------------------------------------------- /cities/SNES/Moscow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/Moscow_2.png -------------------------------------------------------------------------------- /cities/SNES/NYC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/NYC.png -------------------------------------------------------------------------------- /cities/SNES/Seoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/Seoul.png -------------------------------------------------------------------------------- /cities/SNES/Toronto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/SNES/Toronto.png -------------------------------------------------------------------------------- /cities/cities_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/cities/cities_readme.md -------------------------------------------------------------------------------- /misc/wxHexEditor_snescity.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/misc/wxHexEditor_snescity.tags -------------------------------------------------------------------------------- /src/cityedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/cityedit.c -------------------------------------------------------------------------------- /src/cityedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/cityedit.h -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/main.c -------------------------------------------------------------------------------- /src/pngmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/pngmap.c -------------------------------------------------------------------------------- /src/pngmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/pngmap.h -------------------------------------------------------------------------------- /src/sdl_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/sdl_ui.c -------------------------------------------------------------------------------- /src/sdl_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/sdl_ui.h -------------------------------------------------------------------------------- /src/sramcity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/sramcity.c -------------------------------------------------------------------------------- /src/sramcity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/sramcity.h -------------------------------------------------------------------------------- /src/textures.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/textures.xpm -------------------------------------------------------------------------------- /src/ui_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/ui_menu.c -------------------------------------------------------------------------------- /src/ui_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usrshare/snescityeditor/HEAD/src/ui_menu.h --------------------------------------------------------------------------------