├── .gitignore ├── CLaunch-Languages.sln ├── Chinese ├── Chinese.rc └── Chinese.vcxproj ├── Chinese_t ├── Chinese_t.rc └── Chinese_t.vcxproj ├── English ├── English.rc └── English.vcxproj ├── Korean ├── Korean.rc └── Korean.vcxproj ├── LICENSE ├── Language.cpp ├── Language.ini ├── README.md ├── Russian ├── Russian.rc └── Russian.vcxproj ├── Spanish ├── Spanish.rc └── Spanish.vcxproj └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/.gitignore -------------------------------------------------------------------------------- /CLaunch-Languages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/CLaunch-Languages.sln -------------------------------------------------------------------------------- /Chinese/Chinese.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Chinese/Chinese.rc -------------------------------------------------------------------------------- /Chinese/Chinese.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Chinese/Chinese.vcxproj -------------------------------------------------------------------------------- /Chinese_t/Chinese_t.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Chinese_t/Chinese_t.rc -------------------------------------------------------------------------------- /Chinese_t/Chinese_t.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Chinese_t/Chinese_t.vcxproj -------------------------------------------------------------------------------- /English/English.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/English/English.rc -------------------------------------------------------------------------------- /English/English.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/English/English.vcxproj -------------------------------------------------------------------------------- /Korean/Korean.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Korean/Korean.rc -------------------------------------------------------------------------------- /Korean/Korean.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Korean/Korean.vcxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/LICENSE -------------------------------------------------------------------------------- /Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Language.cpp -------------------------------------------------------------------------------- /Language.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Language.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/README.md -------------------------------------------------------------------------------- /Russian/Russian.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Russian/Russian.rc -------------------------------------------------------------------------------- /Russian/Russian.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Russian/Russian.vcxproj -------------------------------------------------------------------------------- /Spanish/Spanish.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Spanish/Spanish.rc -------------------------------------------------------------------------------- /Spanish/Spanish.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/Spanish/Spanish.vcxproj -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyonky/CLaunch-Languages/HEAD/resource.h --------------------------------------------------------------------------------