├── .github ├── FUNDING.yml └── workflows │ └── Release to server.yml ├── .gitignore ├── Game Trainers ├── .gitignore ├── CMakeLists.txt ├── common │ ├── CMakeLists.txt │ ├── assets │ │ ├── elevate.xml │ │ ├── info.png │ │ ├── logo.ico │ │ ├── logo.png │ │ └── logo.psd │ ├── include │ │ ├── FL │ │ │ ├── Enumerations.H │ │ │ ├── Fl.H │ │ │ ├── Fl_Adjuster.H │ │ │ ├── Fl_Anim_GIF_Image.H │ │ │ ├── Fl_BMP_Image.H │ │ │ ├── Fl_Bitmap.H │ │ │ ├── Fl_Box.H │ │ │ ├── Fl_Browser.H │ │ │ ├── Fl_Browser_.H │ │ │ ├── Fl_Button.H │ │ │ ├── Fl_Cairo.H │ │ │ ├── Fl_Cairo_Window.H │ │ │ ├── Fl_Chart.H │ │ │ ├── Fl_Check_Browser.H │ │ │ ├── Fl_Check_Button.H │ │ │ ├── Fl_Choice.H │ │ │ ├── Fl_Clock.H │ │ │ ├── Fl_Color_Chooser.H │ │ │ ├── Fl_Copy_Surface.H │ │ │ ├── Fl_Counter.H │ │ │ ├── Fl_Device.H │ │ │ ├── Fl_Dial.H │ │ │ ├── Fl_Double_Window.H │ │ │ ├── Fl_Export.H │ │ │ ├── Fl_File_Browser.H │ │ │ ├── Fl_File_Chooser.H │ │ │ ├── Fl_File_Icon.H │ │ │ ├── Fl_File_Input.H │ │ │ ├── Fl_Fill_Dial.H │ │ │ ├── Fl_Fill_Slider.H │ │ │ ├── Fl_Flex.H │ │ │ ├── Fl_Float_Input.H │ │ │ ├── Fl_FormsBitmap.H │ │ │ ├── Fl_FormsPixmap.H │ │ │ ├── Fl_Free.H │ │ │ ├── Fl_GIF_Image.H │ │ │ ├── Fl_Gl_Window.H │ │ │ ├── Fl_Graphics_Driver.H │ │ │ ├── Fl_Grid.H │ │ │ ├── Fl_Group.H │ │ │ ├── Fl_Help_Dialog.H │ │ │ ├── Fl_Help_View.H │ │ │ ├── Fl_Hold_Browser.H │ │ │ ├── Fl_Hor_Fill_Slider.H │ │ │ ├── Fl_Hor_Nice_Slider.H │ │ │ ├── Fl_Hor_Slider.H │ │ │ ├── Fl_Hor_Value_Slider.H │ │ │ ├── Fl_ICO_Image.H │ │ │ ├── Fl_Image.H │ │ │ ├── Fl_Image_Surface.H │ │ │ ├── Fl_Input.H │ │ │ ├── Fl_Input_.H │ │ │ ├── Fl_Input_Choice.H │ │ │ ├── Fl_Int_Input.H │ │ │ ├── Fl_JPEG_Image.H │ │ │ ├── Fl_Light_Button.H │ │ │ ├── Fl_Line_Dial.H │ │ │ ├── Fl_Menu.H │ │ │ ├── Fl_Menu_.H │ │ │ ├── Fl_Menu_Bar.H │ │ │ ├── Fl_Menu_Button.H │ │ │ ├── Fl_Menu_Item.H │ │ │ ├── Fl_Menu_Window.H │ │ │ ├── Fl_Multi_Browser.H │ │ │ ├── Fl_Multi_Label.H │ │ │ ├── Fl_Multiline_Input.H │ │ │ ├── Fl_Multiline_Output.H │ │ │ ├── Fl_Native_File_Chooser.H │ │ │ ├── Fl_Nice_Slider.H │ │ │ ├── Fl_Object.H │ │ │ ├── Fl_Output.H │ │ │ ├── Fl_Overlay_Window.H │ │ │ ├── Fl_PDF_File_Surface.H │ │ │ ├── Fl_PNG_Image.H │ │ │ ├── Fl_PNM_Image.H │ │ │ ├── Fl_Pack.H │ │ │ ├── Fl_Paged_Device.H │ │ │ ├── Fl_Pixmap.H │ │ │ ├── Fl_Plugin.H │ │ │ ├── Fl_Positioner.H │ │ │ ├── Fl_PostScript.H │ │ │ ├── Fl_Preferences.H │ │ │ ├── Fl_Printer.H │ │ │ ├── Fl_Progress.H │ │ │ ├── Fl_RGB_Image.H │ │ │ ├── Fl_Radio_Button.H │ │ │ ├── Fl_Radio_Light_Button.H │ │ │ ├── Fl_Radio_Round_Button.H │ │ │ ├── Fl_Rect.H │ │ │ ├── Fl_Repeat_Button.H │ │ │ ├── Fl_Return_Button.H │ │ │ ├── Fl_Roller.H │ │ │ ├── Fl_Round_Button.H │ │ │ ├── Fl_Round_Clock.H │ │ │ ├── Fl_SVG_File_Surface.H │ │ │ ├── Fl_SVG_Image.H │ │ │ ├── Fl_Scheme.H │ │ │ ├── Fl_Scheme_Choice.H │ │ │ ├── Fl_Scroll.H │ │ │ ├── Fl_Scrollbar.H │ │ │ ├── Fl_Secret_Input.H │ │ │ ├── Fl_Select_Browser.H │ │ │ ├── Fl_Shared_Image.H │ │ │ ├── Fl_Shortcut_Button.H │ │ │ ├── Fl_Simple_Counter.H │ │ │ ├── Fl_Single_Window.H │ │ │ ├── Fl_Slider.H │ │ │ ├── Fl_Spinner.H │ │ │ ├── Fl_Sys_Menu_Bar.H │ │ │ ├── Fl_Table.H │ │ │ ├── Fl_Table_Row.H │ │ │ ├── Fl_Tabs.H │ │ │ ├── Fl_Terminal.H │ │ │ ├── Fl_Text_Buffer.H │ │ │ ├── Fl_Text_Display.H │ │ │ ├── Fl_Text_Editor.H │ │ │ ├── Fl_Tile.H │ │ │ ├── Fl_Tiled_Image.H │ │ │ ├── Fl_Timer.H │ │ │ ├── Fl_Toggle_Button.H │ │ │ ├── Fl_Toggle_Light_Button.H │ │ │ ├── Fl_Toggle_Round_Button.H │ │ │ ├── Fl_Tooltip.H │ │ │ ├── Fl_Tree.H │ │ │ ├── Fl_Tree_Item.H │ │ │ ├── Fl_Tree_Item_Array.H │ │ │ ├── Fl_Tree_Prefs.H │ │ │ ├── Fl_Valuator.H │ │ │ ├── Fl_Value_Input.H │ │ │ ├── Fl_Value_Output.H │ │ │ ├── Fl_Value_Slider.H │ │ │ ├── Fl_Widget.H │ │ │ ├── Fl_Widget_Surface.H │ │ │ ├── Fl_Window.H │ │ │ ├── Fl_Wizard.H │ │ │ ├── Fl_XBM_Image.H │ │ │ ├── Fl_XPM_Image.H │ │ │ ├── Makefile.in │ │ │ ├── README.Xcode │ │ │ ├── filename.H │ │ │ ├── fl_ask.H │ │ │ ├── fl_attr.h │ │ │ ├── fl_callback_macros.H │ │ │ ├── fl_casts.H │ │ │ ├── fl_config.h │ │ │ ├── fl_draw.H │ │ │ ├── fl_message.H │ │ │ ├── fl_show_colormap.H │ │ │ ├── fl_show_input.H │ │ │ ├── fl_string_functions.h │ │ │ ├── fl_types.h │ │ │ ├── fl_utf8.h │ │ │ ├── forms.H │ │ │ ├── gl.h │ │ │ ├── gl2opengl.h │ │ │ ├── gl_draw.H │ │ │ ├── glu.h │ │ │ ├── glut.H │ │ │ ├── mac.H │ │ │ ├── math.h │ │ │ ├── names.h │ │ │ ├── platform.H │ │ │ ├── platform_types.h │ │ │ ├── wayland.H │ │ │ ├── win32.H │ │ │ ├── x.H │ │ │ └── x11.H │ │ ├── FLTKUtils.h │ │ ├── Il2CppBase.h │ │ ├── MinHook.h │ │ ├── MonoBase.h │ │ ├── MonoBridge.cpp │ │ ├── MonoBridge.def │ │ ├── TrainerBase.h │ │ ├── il2cpp │ │ │ ├── hook.h │ │ │ ├── il2cpp.cpp │ │ │ ├── il2cpp.h │ │ │ ├── il2cpp_api.h │ │ │ ├── il2cpp_types.h │ │ │ ├── memory.h │ │ │ ├── unity.cpp │ │ │ ├── unity.h │ │ │ └── vec.h │ │ └── nlohmann │ │ │ ├── adl_serializer.hpp │ │ │ ├── byte_container_with_subtype.hpp │ │ │ ├── detail │ │ │ ├── abi_macros.hpp │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_custom_base_class.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── call_std │ │ │ │ │ ├── begin.hpp │ │ │ │ │ └── end.hpp │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── std_fs.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_concat.hpp │ │ │ ├── string_escape.hpp │ │ │ ├── string_utils.hpp │ │ │ └── value_t.hpp │ │ │ ├── json.hpp │ │ │ ├── json_fwd.hpp │ │ │ ├── ordered_map.hpp │ │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ └── libs │ │ ├── x64 │ │ ├── fltk.lib │ │ ├── fltk_forms.lib │ │ ├── fltk_gl.lib │ │ ├── fltk_images.lib │ │ ├── fltk_jpeg.lib │ │ ├── fltk_png.lib │ │ ├── fltk_z.lib │ │ └── libMinHook.x64.lib │ │ └── x86 │ │ ├── fltk.lib │ │ ├── fltk_forms.lib │ │ ├── fltk_gl.lib │ │ ├── fltk_images.lib │ │ ├── fltk_jpeg.lib │ │ ├── fltk_png.lib │ │ ├── fltk_z.lib │ │ └── libMinHook.x86.lib ├── documents │ └── trainer_template.h ├── scripts │ ├── NotoSansSC-Regular.ttf │ ├── font_processor.py │ ├── gcm_trainers.json │ └── requirements.txt └── trainers │ ├── Arrow a Row Trainer │ ├── CMakeLists.txt │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ └── translations.json │ ├── DREDGE Trainer │ ├── CMakeLists.txt │ ├── GCMInjection.cs │ ├── GCMInjection.csproj │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ ├── translation_extra.txt │ └── translations.json │ ├── Feeding Frenzy 2_Shipwreck Showdown Trainer │ ├── CMakeLists.txt │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ └── translations.json │ ├── Headbangers_Rhythm Royale Trainer │ ├── CMakeLists.txt │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ └── translations.json │ ├── Heavy Weapon Trainer │ ├── CMakeLists.txt │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ └── translations.json │ ├── Plants vs. Zombies_GOTY Edition Trainer │ ├── CMakeLists.txt │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ └── translations.json │ ├── Plants vs. Zombies_Replanted Trainer │ ├── CMakeLists.txt │ ├── IL2CPP.cpp │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ ├── translation_extra.txt │ └── translations.json │ └── Wizard of Legend 2 Trainer │ ├── CMakeLists.txt │ ├── logo.png │ ├── main.cpp │ ├── resources.rc │ ├── trainer.h │ └── translations.json ├── LICENSE.txt ├── README.md ├── README_CN.md ├── README_TW.md ├── requirements.txt └── src ├── assets ├── NotoSans-Regular.ttf ├── NotoSansSC-Regular.ttf ├── NotoSansTC-Regular.ttf ├── alipay.png ├── ce.png ├── check-mark.png ├── down.png ├── dropdown-black.png ├── dropdown-white.png ├── fling.png ├── left.png ├── logo.ico ├── logo.png ├── logo.svg ├── logo_trainer.png ├── qq.png ├── right.png ├── setting.ico ├── setting.png ├── up.png ├── warning.png ├── wechat.png ├── wemod.png └── xiaoxing.png ├── dependency ├── 7z │ ├── 7z.dll │ ├── 7z.exe │ └── Formats │ │ └── Asar.64.dll ├── CE Translations │ └── zh_CN │ │ ├── Java.po │ │ ├── SaveSessions.po │ │ ├── Tutorial-x86_64.po │ │ ├── VersionCheck.po │ │ ├── cheatengine-x86_64.po │ │ ├── lclstrconsts.po │ │ ├── monoscript.po │ │ ├── patchscan.po │ │ └── pseudocodediagram.po ├── Elevate.exe ├── ResourceHacker.exe ├── TrainerBGM.mid └── binmay.exe ├── locale ├── de_DE │ └── LC_MESSAGES │ │ └── Game Cheats Manager.po ├── en_US │ └── LC_MESSAGES │ │ └── Game Cheats Manager.po ├── zh_CN │ └── LC_MESSAGES │ │ └── Game Cheats Manager.po └── zh_TW │ └── LC_MESSAGES │ └── Game Cheats Manager.po └── scripts ├── config.py ├── elevate.cpp ├── main.py ├── style_sheet.py ├── threads ├── download_base_thread.py ├── download_display_thread.py ├── download_trainers_thread.py ├── other_threads.py └── update_trainers_thread.py └── widgets ├── custom_dialogs.py ├── custom_widgets.py └── trainer_management.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/Release to server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/.github/workflows/Release to server.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /Game Trainers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/.gitignore -------------------------------------------------------------------------------- /Game Trainers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/common/assets/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/assets/elevate.xml -------------------------------------------------------------------------------- /Game Trainers/common/assets/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/assets/info.png -------------------------------------------------------------------------------- /Game Trainers/common/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/assets/logo.ico -------------------------------------------------------------------------------- /Game Trainers/common/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/assets/logo.png -------------------------------------------------------------------------------- /Game Trainers/common/assets/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/assets/logo.psd -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Enumerations.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Enumerations.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Adjuster.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Adjuster.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Anim_GIF_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Anim_GIF_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_BMP_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_BMP_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Bitmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Bitmap.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Box.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Box.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Browser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Browser_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Browser_.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Cairo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Cairo.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Cairo_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Cairo_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Chart.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Chart.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Check_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Check_Browser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Check_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Check_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Choice.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Clock.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Color_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Color_Chooser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Copy_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Copy_Surface.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Counter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Counter.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Device.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Device.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Dial.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Double_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Double_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Export.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Export.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_File_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_File_Browser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_File_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_File_Chooser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_File_Icon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_File_Icon.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_File_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_File_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Fill_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Fill_Dial.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Fill_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Fill_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Flex.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Flex.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Float_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Float_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_FormsBitmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_FormsBitmap.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_FormsPixmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_FormsPixmap.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Free.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Free.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_GIF_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_GIF_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Gl_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Gl_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Graphics_Driver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Graphics_Driver.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Grid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Grid.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Group.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Group.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Help_Dialog.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Help_Dialog.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Help_View.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Help_View.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Hold_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Hold_Browser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Hor_Fill_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Hor_Fill_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Hor_Nice_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Hor_Nice_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Hor_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Hor_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Hor_Value_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Hor_Value_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_ICO_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_ICO_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Image_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Image_Surface.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Input_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Input_.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Input_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Input_Choice.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Int_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Int_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_JPEG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_JPEG_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Light_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Line_Dial.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Line_Dial.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Menu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Menu.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Menu_.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Menu_.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Menu_Bar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Menu_Bar.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Menu_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Menu_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Menu_Item.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Menu_Item.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Menu_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Menu_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Multi_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Multi_Browser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Multi_Label.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Multi_Label.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Multiline_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Multiline_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Multiline_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Multiline_Output.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Native_File_Chooser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Native_File_Chooser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Nice_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Nice_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Object.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Object.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Output.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Overlay_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Overlay_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_PDF_File_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_PDF_File_Surface.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_PNG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_PNG_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_PNM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_PNM_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Pack.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Pack.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Paged_Device.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Paged_Device.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Pixmap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Pixmap.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Plugin.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Plugin.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Positioner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Positioner.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_PostScript.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_PostScript.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Preferences.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Preferences.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Printer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Printer.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Progress.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Progress.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_RGB_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_RGB_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Radio_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Radio_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Radio_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Radio_Light_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Radio_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Radio_Round_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Rect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Rect.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Repeat_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Repeat_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Return_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Return_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Roller.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Roller.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Round_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Round_Clock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Round_Clock.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_SVG_File_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_SVG_File_Surface.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_SVG_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_SVG_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Scheme.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Scheme.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Scheme_Choice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Scheme_Choice.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Scroll.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Scroll.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Scrollbar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Scrollbar.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Secret_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Secret_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Select_Browser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Select_Browser.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Shared_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Shared_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Shortcut_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Shortcut_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Simple_Counter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Simple_Counter.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Single_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Single_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Spinner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Spinner.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Sys_Menu_Bar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Sys_Menu_Bar.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Table.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Table.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Table_Row.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Table_Row.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tabs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tabs.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Terminal.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Terminal.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Text_Buffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Text_Buffer.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Text_Display.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Text_Display.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Text_Editor.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Text_Editor.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tile.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tile.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tiled_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tiled_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Timer.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Toggle_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Toggle_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Toggle_Light_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Toggle_Light_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Toggle_Round_Button.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Toggle_Round_Button.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tooltip.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tooltip.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tree.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tree.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tree_Item.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tree_Item.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tree_Item_Array.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tree_Item_Array.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Tree_Prefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Tree_Prefs.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Valuator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Valuator.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Value_Input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Value_Input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Value_Output.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Value_Output.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Value_Slider.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Value_Slider.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Widget.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Widget.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Widget_Surface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Widget_Surface.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Window.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Window.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_Wizard.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_Wizard.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_XBM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_XBM_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Fl_XPM_Image.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Fl_XPM_Image.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/Makefile.in -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/README.Xcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/README.Xcode -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/filename.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/filename.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_ask.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_ask.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_attr.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_callback_macros.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_callback_macros.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_casts.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_casts.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_config.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_draw.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_message.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_message.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_show_colormap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_show_colormap.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_show_input.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_show_input.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_string_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_string_functions.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_types.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/fl_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/fl_utf8.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/forms.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/forms.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/gl.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/gl2opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/gl2opengl.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/gl_draw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/gl_draw.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/glu.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/glut.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/glut.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/mac.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/mac.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/math.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/names.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/platform.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/platform.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/platform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/platform_types.h -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/wayland.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/wayland.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/win32.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/win32.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/x.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/x.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FL/x11.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FL/x11.H -------------------------------------------------------------------------------- /Game Trainers/common/include/FLTKUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/FLTKUtils.h -------------------------------------------------------------------------------- /Game Trainers/common/include/Il2CppBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/Il2CppBase.h -------------------------------------------------------------------------------- /Game Trainers/common/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/MinHook.h -------------------------------------------------------------------------------- /Game Trainers/common/include/MonoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/MonoBase.h -------------------------------------------------------------------------------- /Game Trainers/common/include/MonoBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/MonoBridge.cpp -------------------------------------------------------------------------------- /Game Trainers/common/include/MonoBridge.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/MonoBridge.def -------------------------------------------------------------------------------- /Game Trainers/common/include/TrainerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/TrainerBase.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/hook.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/il2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/il2cpp.cpp -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/il2cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/il2cpp.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/il2cpp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/il2cpp_api.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/il2cpp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/il2cpp_types.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/memory.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/unity.cpp -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/unity.h -------------------------------------------------------------------------------- /Game Trainers/common/include/il2cpp/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/il2cpp/vec.h -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/json_custom_base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/json_custom_base_class.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/string_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/string_utils.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /Game Trainers/common/include/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk_forms.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk_forms.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk_gl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk_gl.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk_images.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk_images.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk_jpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk_jpeg.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk_png.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk_png.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/fltk_z.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/fltk_z.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x64/libMinHook.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x64/libMinHook.x64.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk_forms.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk_forms.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk_gl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk_gl.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk_images.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk_images.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk_jpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk_jpeg.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk_png.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk_png.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/fltk_z.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/fltk_z.lib -------------------------------------------------------------------------------- /Game Trainers/common/libs/x86/libMinHook.x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/common/libs/x86/libMinHook.x86.lib -------------------------------------------------------------------------------- /Game Trainers/documents/trainer_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/documents/trainer_template.h -------------------------------------------------------------------------------- /Game Trainers/scripts/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/scripts/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /Game Trainers/scripts/font_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/scripts/font_processor.py -------------------------------------------------------------------------------- /Game Trainers/scripts/gcm_trainers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/scripts/gcm_trainers.json -------------------------------------------------------------------------------- /Game Trainers/scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | fonttools 2 | boto3 -------------------------------------------------------------------------------- /Game Trainers/trainers/Arrow a Row Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Arrow a Row Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Arrow a Row Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Arrow a Row Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Arrow a Row Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Arrow a Row Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Arrow a Row Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Arrow a Row Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Arrow a Row Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Arrow a Row Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Arrow a Row Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Arrow a Row Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/GCMInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/GCMInjection.cs -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/GCMInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/GCMInjection.csproj -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/translation_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/translation_extra.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/DREDGE Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/DREDGE Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Feeding Frenzy 2_Shipwreck Showdown Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Headbangers_Rhythm Royale Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/Heavy Weapon Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Heavy Weapon Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Heavy Weapon Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Heavy Weapon Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Heavy Weapon Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Heavy Weapon Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Heavy Weapon Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Heavy Weapon Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Heavy Weapon Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Heavy Weapon Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Heavy Weapon Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Heavy Weapon Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_GOTY Edition Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/IL2CPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/IL2CPP.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/translation_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/translation_extra.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Plants vs. Zombies_Replanted Trainer/translations.json -------------------------------------------------------------------------------- /Game Trainers/trainers/Wizard of Legend 2 Trainer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Wizard of Legend 2 Trainer/CMakeLists.txt -------------------------------------------------------------------------------- /Game Trainers/trainers/Wizard of Legend 2 Trainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Wizard of Legend 2 Trainer/logo.png -------------------------------------------------------------------------------- /Game Trainers/trainers/Wizard of Legend 2 Trainer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Wizard of Legend 2 Trainer/main.cpp -------------------------------------------------------------------------------- /Game Trainers/trainers/Wizard of Legend 2 Trainer/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Wizard of Legend 2 Trainer/resources.rc -------------------------------------------------------------------------------- /Game Trainers/trainers/Wizard of Legend 2 Trainer/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Wizard of Legend 2 Trainer/trainer.h -------------------------------------------------------------------------------- /Game Trainers/trainers/Wizard of Legend 2 Trainer/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/Game Trainers/trainers/Wizard of Legend 2 Trainer/translations.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/README_CN.md -------------------------------------------------------------------------------- /README_TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/README_TW.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/assets/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /src/assets/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /src/assets/NotoSansTC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/NotoSansTC-Regular.ttf -------------------------------------------------------------------------------- /src/assets/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/alipay.png -------------------------------------------------------------------------------- /src/assets/ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/ce.png -------------------------------------------------------------------------------- /src/assets/check-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/check-mark.png -------------------------------------------------------------------------------- /src/assets/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/down.png -------------------------------------------------------------------------------- /src/assets/dropdown-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/dropdown-black.png -------------------------------------------------------------------------------- /src/assets/dropdown-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/dropdown-white.png -------------------------------------------------------------------------------- /src/assets/fling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/fling.png -------------------------------------------------------------------------------- /src/assets/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/left.png -------------------------------------------------------------------------------- /src/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/logo.ico -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/logo_trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/logo_trainer.png -------------------------------------------------------------------------------- /src/assets/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/qq.png -------------------------------------------------------------------------------- /src/assets/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/right.png -------------------------------------------------------------------------------- /src/assets/setting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/setting.ico -------------------------------------------------------------------------------- /src/assets/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/setting.png -------------------------------------------------------------------------------- /src/assets/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/up.png -------------------------------------------------------------------------------- /src/assets/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/warning.png -------------------------------------------------------------------------------- /src/assets/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/wechat.png -------------------------------------------------------------------------------- /src/assets/wemod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/wemod.png -------------------------------------------------------------------------------- /src/assets/xiaoxing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/assets/xiaoxing.png -------------------------------------------------------------------------------- /src/dependency/7z/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/7z/7z.dll -------------------------------------------------------------------------------- /src/dependency/7z/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/7z/7z.exe -------------------------------------------------------------------------------- /src/dependency/7z/Formats/Asar.64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/7z/Formats/Asar.64.dll -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/Java.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/Java.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/SaveSessions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/SaveSessions.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/Tutorial-x86_64.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/Tutorial-x86_64.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/VersionCheck.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/VersionCheck.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/cheatengine-x86_64.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/cheatengine-x86_64.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/lclstrconsts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/lclstrconsts.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/monoscript.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/monoscript.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/patchscan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/patchscan.po -------------------------------------------------------------------------------- /src/dependency/CE Translations/zh_CN/pseudocodediagram.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/CE Translations/zh_CN/pseudocodediagram.po -------------------------------------------------------------------------------- /src/dependency/Elevate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/Elevate.exe -------------------------------------------------------------------------------- /src/dependency/ResourceHacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/ResourceHacker.exe -------------------------------------------------------------------------------- /src/dependency/TrainerBGM.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/TrainerBGM.mid -------------------------------------------------------------------------------- /src/dependency/binmay.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/dependency/binmay.exe -------------------------------------------------------------------------------- /src/locale/de_DE/LC_MESSAGES/Game Cheats Manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/locale/de_DE/LC_MESSAGES/Game Cheats Manager.po -------------------------------------------------------------------------------- /src/locale/en_US/LC_MESSAGES/Game Cheats Manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/locale/en_US/LC_MESSAGES/Game Cheats Manager.po -------------------------------------------------------------------------------- /src/locale/zh_CN/LC_MESSAGES/Game Cheats Manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/locale/zh_CN/LC_MESSAGES/Game Cheats Manager.po -------------------------------------------------------------------------------- /src/locale/zh_TW/LC_MESSAGES/Game Cheats Manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/locale/zh_TW/LC_MESSAGES/Game Cheats Manager.po -------------------------------------------------------------------------------- /src/scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/config.py -------------------------------------------------------------------------------- /src/scripts/elevate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/elevate.cpp -------------------------------------------------------------------------------- /src/scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/main.py -------------------------------------------------------------------------------- /src/scripts/style_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/style_sheet.py -------------------------------------------------------------------------------- /src/scripts/threads/download_base_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/threads/download_base_thread.py -------------------------------------------------------------------------------- /src/scripts/threads/download_display_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/threads/download_display_thread.py -------------------------------------------------------------------------------- /src/scripts/threads/download_trainers_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/threads/download_trainers_thread.py -------------------------------------------------------------------------------- /src/scripts/threads/other_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/threads/other_threads.py -------------------------------------------------------------------------------- /src/scripts/threads/update_trainers_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/threads/update_trainers_thread.py -------------------------------------------------------------------------------- /src/scripts/widgets/custom_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/widgets/custom_dialogs.py -------------------------------------------------------------------------------- /src/scripts/widgets/custom_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/widgets/custom_widgets.py -------------------------------------------------------------------------------- /src/scripts/widgets/trainer_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dyang886/Game-Cheats-Manager/HEAD/src/scripts/widgets/trainer_management.py --------------------------------------------------------------------------------