├── .gitignore ├── README.md ├── decompiler ├── decompiler.cpp └── decompiler.h ├── dictionary ├── dictionary.cpp └── dictionary.h ├── gcx.sln ├── gcx.vcxproj ├── gcx.vcxproj.filters ├── gcx.vcxproj.user ├── indentation ├── indentation.cpp └── indentation.h ├── interface └── cli │ ├── cli.cpp │ └── cli.h ├── main.cpp └── mgs ├── common ├── fileutil.h ├── game │ ├── game.cpp │ └── game.h └── strcode.h └── script ├── gcx.cpp └── gcx.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | Debug/ 3 | Release/ 4 | X64/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/README.md -------------------------------------------------------------------------------- /decompiler/decompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/decompiler/decompiler.cpp -------------------------------------------------------------------------------- /decompiler/decompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/decompiler/decompiler.h -------------------------------------------------------------------------------- /dictionary/dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/dictionary/dictionary.cpp -------------------------------------------------------------------------------- /dictionary/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/dictionary/dictionary.h -------------------------------------------------------------------------------- /gcx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/gcx.sln -------------------------------------------------------------------------------- /gcx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/gcx.vcxproj -------------------------------------------------------------------------------- /gcx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/gcx.vcxproj.filters -------------------------------------------------------------------------------- /gcx.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/gcx.vcxproj.user -------------------------------------------------------------------------------- /indentation/indentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/indentation/indentation.cpp -------------------------------------------------------------------------------- /indentation/indentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/indentation/indentation.h -------------------------------------------------------------------------------- /interface/cli/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/interface/cli/cli.cpp -------------------------------------------------------------------------------- /interface/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/interface/cli/cli.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/main.cpp -------------------------------------------------------------------------------- /mgs/common/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/mgs/common/fileutil.h -------------------------------------------------------------------------------- /mgs/common/game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/mgs/common/game/game.cpp -------------------------------------------------------------------------------- /mgs/common/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/mgs/common/game/game.h -------------------------------------------------------------------------------- /mgs/common/strcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/mgs/common/strcode.h -------------------------------------------------------------------------------- /mgs/script/gcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/mgs/script/gcx.cpp -------------------------------------------------------------------------------- /mgs/script/gcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayveer/Gcx/HEAD/mgs/script/gcx.h --------------------------------------------------------------------------------