├── .gitignore ├── GXT Builder.sln ├── GXT Builder ├── DelimStringReader.h ├── GXT Builder.vcxproj ├── GXT Builder.vcxproj.filters ├── ScopedCurrentDirectory.h ├── gxtbuild.cpp ├── gxtbuild.h ├── utf8.h └── utf8 │ ├── checked.h │ ├── core.h │ └── unchecked.h ├── LICENSE ├── README.md └── doc ├── EN ├── MAIN │ └── FOO.txt └── MISS │ └── MISSION.txt ├── american.ini └── charmap.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /GXT Builder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder.sln -------------------------------------------------------------------------------- /GXT Builder/DelimStringReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/DelimStringReader.h -------------------------------------------------------------------------------- /GXT Builder/GXT Builder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/GXT Builder.vcxproj -------------------------------------------------------------------------------- /GXT Builder/GXT Builder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/GXT Builder.vcxproj.filters -------------------------------------------------------------------------------- /GXT Builder/ScopedCurrentDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/ScopedCurrentDirectory.h -------------------------------------------------------------------------------- /GXT Builder/gxtbuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/gxtbuild.cpp -------------------------------------------------------------------------------- /GXT Builder/gxtbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/gxtbuild.h -------------------------------------------------------------------------------- /GXT Builder/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/utf8.h -------------------------------------------------------------------------------- /GXT Builder/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/utf8/checked.h -------------------------------------------------------------------------------- /GXT Builder/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/utf8/core.h -------------------------------------------------------------------------------- /GXT Builder/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/GXT Builder/utf8/unchecked.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/README.md -------------------------------------------------------------------------------- /doc/EN/MAIN/FOO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/doc/EN/MAIN/FOO.txt -------------------------------------------------------------------------------- /doc/EN/MISS/MISSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/doc/EN/MISS/MISSION.txt -------------------------------------------------------------------------------- /doc/american.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/doc/american.ini -------------------------------------------------------------------------------- /doc/charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CookiePLMonster/GXT-Builder/HEAD/doc/charmap.txt --------------------------------------------------------------------------------