├── .gitattributes ├── .github └── workflows │ └── Windows_x64.yml ├── .gitignore ├── App.config ├── App.xaml ├── App.xaml.cs ├── Common ├── EmbedFileManager.cs ├── GameHelper.cs ├── IProxy.cs ├── IniHelper.cs ├── ProcessWatcher.cs └── ProxyHelper.cs ├── Control ├── ServerEditControl.xaml ├── ServerEditControl.xaml.cs ├── SnackBar.xaml └── SnackBar.xaml.cs ├── Costura64 └── InjectorLib.dll ├── ExceptionLib ├── Exception.cpp ├── Exception.h ├── ExceptionLib.vcxproj └── ExceptionLib.vcxproj.filters ├── FodyWeavers.xml ├── InjectorLib ├── DllInjector │ ├── DllInjector.h │ └── dllinjector.cpp ├── InjectorLib.vcxproj ├── InjectorLib.vcxproj.filters └── ModuleInjector │ ├── NoTraceModuleInjector.cpp │ └── NoTraceModuleInjector.h ├── Launcher.csproj ├── Launcher.sln ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model ├── GameInfo.cs ├── LauncherConfig.cs ├── PkgVersionItem.cs ├── ProxyConfig.cs └── ServerItem.cs ├── MultilingualResources └── Launcher.en.xlf ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.en.resx ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── RSAPatch ├── PublicKey.txt ├── RSAPatch.dll └── RSAPatch.dll.bak ├── Res └── remixicon.ttf ├── Style ├── IconButtonStyle.xaml └── NavigationItemContainerStyle.xaml ├── View ├── About.xaml ├── About.xaml.cs ├── Home.xaml ├── Home.xaml.cs ├── Setting.xaml └── Setting.xaml.cs ├── ViewModel ├── HomeVM.cs └── SettingVM.cs ├── app.manifest ├── favicon.ico ├── include ├── AlgroithmLib │ ├── Common │ │ └── CommonCharacter.h │ └── Encrypt │ │ ├── CRC32.h │ │ ├── MD5.h │ │ ├── RC4.h │ │ ├── RSA.h │ │ └── SHA1.h ├── CharacterLib │ └── Character.h ├── DbManagerLib │ └── BaseDbManager.h ├── DiskLib │ └── DiskInfo │ │ └── DiskInfo.h ├── ExceptionLib │ └── Exception.h ├── FileLib │ └── File.h ├── GdiLib │ └── GdiScreenshot.h ├── HookLib │ ├── IATHook │ │ └── IATHook.h │ └── InlineHook │ │ └── InlineHook.h ├── InjectorLib │ ├── DllInjector │ │ └── DllInjector.h │ └── ModuleInjector │ │ └── NoTraceModuleInjector.h ├── LogLib │ ├── CmdLog.h │ ├── Log.h │ ├── LogExpression.h │ ├── LogExpressionCalc.h │ └── LogExpressionPeLoader.h ├── MathLib │ └── DistanceCalc.h ├── ProcessLib │ ├── AntiRootkit │ │ └── AntiRootkit.h │ ├── Common │ │ └── ResHandleManager.h │ ├── KeyboardMsg │ │ └── KeyboardMsg.h │ ├── Lock │ │ └── Lock.h │ ├── Memory │ │ ├── Memory.h │ │ ├── ProcessSearchBinary.h │ │ └── SearchBinary.h │ ├── Process │ │ ├── Process.h │ │ └── ProcessModule.h │ └── Thread │ │ └── Thread.h ├── SocketClientLib │ └── SocketBaseClientService.h ├── SocketCommon │ ├── SocketBuffer.h │ ├── SocketIoEvent.h │ ├── SocketRemoteClient.h │ └── SocketTag.h ├── SocketServerLib │ └── SocketBaseServerService.h ├── SystemEnvLib │ └── SystemInfo.h └── TimeLib │ ├── TimeCharacter.h │ ├── TimeRand.h │ └── TimeTick.h ├── key └── GC-Dispatch.txt ├── lib └── InjectorLib_x64_Debug.lib └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Windows_x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/.github/workflows/Windows_x64.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Common/EmbedFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Common/EmbedFileManager.cs -------------------------------------------------------------------------------- /Common/GameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Common/GameHelper.cs -------------------------------------------------------------------------------- /Common/IProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Common/IProxy.cs -------------------------------------------------------------------------------- /Common/IniHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Common/IniHelper.cs -------------------------------------------------------------------------------- /Common/ProcessWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Common/ProcessWatcher.cs -------------------------------------------------------------------------------- /Common/ProxyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Common/ProxyHelper.cs -------------------------------------------------------------------------------- /Control/ServerEditControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Control/ServerEditControl.xaml -------------------------------------------------------------------------------- /Control/ServerEditControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Control/ServerEditControl.xaml.cs -------------------------------------------------------------------------------- /Control/SnackBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Control/SnackBar.xaml -------------------------------------------------------------------------------- /Control/SnackBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Control/SnackBar.xaml.cs -------------------------------------------------------------------------------- /Costura64/InjectorLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Costura64/InjectorLib.dll -------------------------------------------------------------------------------- /ExceptionLib/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/ExceptionLib/Exception.cpp -------------------------------------------------------------------------------- /ExceptionLib/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/ExceptionLib/Exception.h -------------------------------------------------------------------------------- /ExceptionLib/ExceptionLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/ExceptionLib/ExceptionLib.vcxproj -------------------------------------------------------------------------------- /ExceptionLib/ExceptionLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/ExceptionLib/ExceptionLib.vcxproj.filters -------------------------------------------------------------------------------- /FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/FodyWeavers.xml -------------------------------------------------------------------------------- /InjectorLib/DllInjector/DllInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/InjectorLib/DllInjector/DllInjector.h -------------------------------------------------------------------------------- /InjectorLib/DllInjector/dllinjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/InjectorLib/DllInjector/dllinjector.cpp -------------------------------------------------------------------------------- /InjectorLib/InjectorLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/InjectorLib/InjectorLib.vcxproj -------------------------------------------------------------------------------- /InjectorLib/InjectorLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/InjectorLib/InjectorLib.vcxproj.filters -------------------------------------------------------------------------------- /InjectorLib/ModuleInjector/NoTraceModuleInjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/InjectorLib/ModuleInjector/NoTraceModuleInjector.cpp -------------------------------------------------------------------------------- /InjectorLib/ModuleInjector/NoTraceModuleInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/InjectorLib/ModuleInjector/NoTraceModuleInjector.h -------------------------------------------------------------------------------- /Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Launcher.csproj -------------------------------------------------------------------------------- /Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Launcher.sln -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Model/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Model/GameInfo.cs -------------------------------------------------------------------------------- /Model/LauncherConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Model/LauncherConfig.cs -------------------------------------------------------------------------------- /Model/PkgVersionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Model/PkgVersionItem.cs -------------------------------------------------------------------------------- /Model/ProxyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Model/ProxyConfig.cs -------------------------------------------------------------------------------- /Model/ServerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Model/ServerItem.cs -------------------------------------------------------------------------------- /MultilingualResources/Launcher.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/MultilingualResources/Launcher.en.xlf -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Properties/Resources.en.resx -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/README.md -------------------------------------------------------------------------------- /RSAPatch/PublicKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/RSAPatch/PublicKey.txt -------------------------------------------------------------------------------- /RSAPatch/RSAPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/RSAPatch/RSAPatch.dll -------------------------------------------------------------------------------- /RSAPatch/RSAPatch.dll.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/RSAPatch/RSAPatch.dll.bak -------------------------------------------------------------------------------- /Res/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Res/remixicon.ttf -------------------------------------------------------------------------------- /Style/IconButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Style/IconButtonStyle.xaml -------------------------------------------------------------------------------- /Style/NavigationItemContainerStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/Style/NavigationItemContainerStyle.xaml -------------------------------------------------------------------------------- /View/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/View/About.xaml -------------------------------------------------------------------------------- /View/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/View/About.xaml.cs -------------------------------------------------------------------------------- /View/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/View/Home.xaml -------------------------------------------------------------------------------- /View/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/View/Home.xaml.cs -------------------------------------------------------------------------------- /View/Setting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/View/Setting.xaml -------------------------------------------------------------------------------- /View/Setting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/View/Setting.xaml.cs -------------------------------------------------------------------------------- /ViewModel/HomeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/ViewModel/HomeVM.cs -------------------------------------------------------------------------------- /ViewModel/SettingVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/ViewModel/SettingVM.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/app.manifest -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/favicon.ico -------------------------------------------------------------------------------- /include/AlgroithmLib/Common/CommonCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/AlgroithmLib/Common/CommonCharacter.h -------------------------------------------------------------------------------- /include/AlgroithmLib/Encrypt/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/AlgroithmLib/Encrypt/CRC32.h -------------------------------------------------------------------------------- /include/AlgroithmLib/Encrypt/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/AlgroithmLib/Encrypt/MD5.h -------------------------------------------------------------------------------- /include/AlgroithmLib/Encrypt/RC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/AlgroithmLib/Encrypt/RC4.h -------------------------------------------------------------------------------- /include/AlgroithmLib/Encrypt/RSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/AlgroithmLib/Encrypt/RSA.h -------------------------------------------------------------------------------- /include/AlgroithmLib/Encrypt/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/AlgroithmLib/Encrypt/SHA1.h -------------------------------------------------------------------------------- /include/CharacterLib/Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/CharacterLib/Character.h -------------------------------------------------------------------------------- /include/DbManagerLib/BaseDbManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/DbManagerLib/BaseDbManager.h -------------------------------------------------------------------------------- /include/DiskLib/DiskInfo/DiskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/DiskLib/DiskInfo/DiskInfo.h -------------------------------------------------------------------------------- /include/ExceptionLib/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ExceptionLib/Exception.h -------------------------------------------------------------------------------- /include/FileLib/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/FileLib/File.h -------------------------------------------------------------------------------- /include/GdiLib/GdiScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/GdiLib/GdiScreenshot.h -------------------------------------------------------------------------------- /include/HookLib/IATHook/IATHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/HookLib/IATHook/IATHook.h -------------------------------------------------------------------------------- /include/HookLib/InlineHook/InlineHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/HookLib/InlineHook/InlineHook.h -------------------------------------------------------------------------------- /include/InjectorLib/DllInjector/DllInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/InjectorLib/DllInjector/DllInjector.h -------------------------------------------------------------------------------- /include/InjectorLib/ModuleInjector/NoTraceModuleInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/InjectorLib/ModuleInjector/NoTraceModuleInjector.h -------------------------------------------------------------------------------- /include/LogLib/CmdLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/LogLib/CmdLog.h -------------------------------------------------------------------------------- /include/LogLib/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/LogLib/Log.h -------------------------------------------------------------------------------- /include/LogLib/LogExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/LogLib/LogExpression.h -------------------------------------------------------------------------------- /include/LogLib/LogExpressionCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/LogLib/LogExpressionCalc.h -------------------------------------------------------------------------------- /include/LogLib/LogExpressionPeLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/LogLib/LogExpressionPeLoader.h -------------------------------------------------------------------------------- /include/MathLib/DistanceCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/MathLib/DistanceCalc.h -------------------------------------------------------------------------------- /include/ProcessLib/AntiRootkit/AntiRootkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/AntiRootkit/AntiRootkit.h -------------------------------------------------------------------------------- /include/ProcessLib/Common/ResHandleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Common/ResHandleManager.h -------------------------------------------------------------------------------- /include/ProcessLib/KeyboardMsg/KeyboardMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/KeyboardMsg/KeyboardMsg.h -------------------------------------------------------------------------------- /include/ProcessLib/Lock/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Lock/Lock.h -------------------------------------------------------------------------------- /include/ProcessLib/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Memory/Memory.h -------------------------------------------------------------------------------- /include/ProcessLib/Memory/ProcessSearchBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Memory/ProcessSearchBinary.h -------------------------------------------------------------------------------- /include/ProcessLib/Memory/SearchBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Memory/SearchBinary.h -------------------------------------------------------------------------------- /include/ProcessLib/Process/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Process/Process.h -------------------------------------------------------------------------------- /include/ProcessLib/Process/ProcessModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Process/ProcessModule.h -------------------------------------------------------------------------------- /include/ProcessLib/Thread/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/ProcessLib/Thread/Thread.h -------------------------------------------------------------------------------- /include/SocketClientLib/SocketBaseClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SocketClientLib/SocketBaseClientService.h -------------------------------------------------------------------------------- /include/SocketCommon/SocketBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SocketCommon/SocketBuffer.h -------------------------------------------------------------------------------- /include/SocketCommon/SocketIoEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SocketCommon/SocketIoEvent.h -------------------------------------------------------------------------------- /include/SocketCommon/SocketRemoteClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SocketCommon/SocketRemoteClient.h -------------------------------------------------------------------------------- /include/SocketCommon/SocketTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SocketCommon/SocketTag.h -------------------------------------------------------------------------------- /include/SocketServerLib/SocketBaseServerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SocketServerLib/SocketBaseServerService.h -------------------------------------------------------------------------------- /include/SystemEnvLib/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/SystemEnvLib/SystemInfo.h -------------------------------------------------------------------------------- /include/TimeLib/TimeCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/TimeLib/TimeCharacter.h -------------------------------------------------------------------------------- /include/TimeLib/TimeRand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/TimeLib/TimeRand.h -------------------------------------------------------------------------------- /include/TimeLib/TimeTick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/include/TimeLib/TimeTick.h -------------------------------------------------------------------------------- /key/GC-Dispatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/key/GC-Dispatch.txt -------------------------------------------------------------------------------- /lib/InjectorLib_x64_Debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/lib/InjectorLib_x64_Debug.lib -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucooing/Launcher/HEAD/packages.config --------------------------------------------------------------------------------