├── .github └── workflows │ ├── build.yml │ └── pr.yml ├── .gitignore ├── AS_Logo.png ├── CS2_External.sln ├── CS2_External ├── Backup │ ├── CollapseGUI.h │ ├── Handles.h │ ├── Language.cpp │ ├── Languages │ │ ├── Czech.h │ │ ├── Danish.h │ │ ├── Dutch.h │ │ ├── English.h │ │ ├── Francais.h │ │ ├── German.h │ │ ├── Greek.h │ │ ├── Hungarian.h │ │ ├── Korean.h │ │ ├── Polish.h │ │ ├── Portuguese.h │ │ ├── Romanian.h │ │ ├── Ruassian.h │ │ ├── SimplifiedChinese.h │ │ ├── Slovak.h │ │ ├── Spanish.h │ │ └── Turkish.h │ ├── Old Menu.h │ ├── RCS.h │ ├── Styles.h │ ├── Updater.h │ └── duck.cpp ├── Bone.cpp ├── Bone.h ├── CS2_External.aps ├── CS2_External.rc ├── CS2_External.vcxproj ├── CS2_External.vcxproj.filters ├── CS2_External.vcxproj.user ├── Cheats.cpp ├── Cheats.h ├── Entity.cpp ├── Entity.h ├── Features │ ├── Aimbot │ │ ├── Legitbot.hpp │ │ └── Ragebot.hpp │ ├── BombTimer.h │ ├── Debugger.h │ ├── ESP.h │ ├── GUI.h │ ├── GetWeaponIcon.h │ ├── Glow.cpp │ ├── Glow.h │ ├── Misc.cpp │ ├── Misc.h │ ├── Mouse.cpp │ ├── Mouse.h │ ├── RCS.h │ ├── SkinChanger │ │ ├── SkinChanger.cpp │ │ └── SkinChanger.h │ ├── SpectatorList.h │ ├── StyleChanger.cpp │ └── StyleChanger.h ├── Font │ ├── IconsFontAwesome5.h │ ├── fa-regular.ttf │ ├── fontArray.h │ └── stratum2.ttf ├── Game.cpp ├── Game.h ├── MenuConfig.hpp ├── OS-ImGui │ ├── OS-ImGui.cpp │ ├── OS-ImGui.h │ ├── OS-ImGui_Base.cpp │ ├── OS-ImGui_Base.h │ ├── OS-ImGui_Exception.hpp │ ├── OS-ImGui_External.cpp │ ├── OS-ImGui_External.h │ ├── OS-ImGui_Struct.h │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ └── stb │ │ └── stb_image.h ├── Offsets.cpp ├── Offsets.h ├── Radar │ ├── Radar.cpp │ └── Radar.h ├── Render.hpp ├── Resources │ ├── 8964.h │ ├── Images.h │ ├── Language.h │ ├── Sounds.h │ └── WeaponIcon.h ├── TriggerBot.cpp ├── TriggerBot.h ├── Utils │ ├── ConfigMenu.cpp │ ├── ConfigMenu.hpp │ ├── ConfigSaver.cpp │ ├── ConfigSaver.hpp │ ├── Format.h │ ├── GlobalVars.cpp │ ├── GlobalVars.h │ ├── Globals.hpp │ ├── Helpers.h │ ├── Initial │ │ ├── Init.h │ │ └── system.h │ ├── MemorySearch.cpp │ ├── ProcessManager.hpp │ ├── Random.h │ ├── Style.h │ ├── cpp-httplib │ │ └── httplib.h │ ├── curl │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── header.h │ │ ├── lib │ │ │ ├── libcurl.dll │ │ │ ├── libcurl_imp.exp │ │ │ └── libcurl_imp.lib │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── options.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ ├── typecheck-gcc.h │ │ ├── urlapi.h │ │ └── websockets.h │ ├── json │ │ └── json.hpp │ └── yaml-cpp │ │ ├── anchor.h │ │ ├── binary.h │ │ ├── contrib │ │ ├── anchordict.h │ │ └── graphbuilder.h │ │ ├── depthguard.h │ │ ├── dll.h │ │ ├── emitfromevents.h │ │ ├── emitter.h │ │ ├── emitterdef.h │ │ ├── emittermanip.h │ │ ├── emitterstyle.h │ │ ├── eventhandler.h │ │ ├── exceptions.h │ │ ├── lib │ │ └── yaml-cpp.lib │ │ ├── mark.h │ │ ├── node │ │ ├── convert.h │ │ ├── detail │ │ │ ├── impl.h │ │ │ ├── iterator.h │ │ │ ├── iterator_fwd.h │ │ │ ├── memory.h │ │ │ ├── node.h │ │ │ ├── node_data.h │ │ │ ├── node_iterator.h │ │ │ └── node_ref.h │ │ ├── emit.h │ │ ├── impl.h │ │ ├── iterator.h │ │ ├── node.h │ │ ├── parse.h │ │ ├── ptr.h │ │ └── type.h │ │ ├── noexcept.h │ │ ├── null.h │ │ ├── ostream_wrapper.h │ │ ├── parser.h │ │ ├── stlemitter.h │ │ ├── traits.h │ │ └── yaml.h ├── View.hpp ├── driver │ ├── driver.cpp │ ├── driver.h │ ├── driver_data.h │ ├── loader.h │ └── nt.hpp ├── icon.ico ├── main.cpp └── resource.h ├── Guides ├── Resellers.md └── images │ ├── ZhuPing.jpg │ ├── ZhuPing2.jpg │ └── ZhuPing3.jpg ├── Image1.png ├── Image2.png ├── LICENSE ├── README.md ├── Textures ├── Aimbot Button.png ├── Config Button.png ├── Logo.png ├── Misc Button.png ├── NL logo.png └── Visual Button.png ├── msyhbd.ttc ├── ПРОЧИТАЙМЕНЯ.md └── 自述文档.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /AS_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/AS_Logo.png -------------------------------------------------------------------------------- /CS2_External.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External.sln -------------------------------------------------------------------------------- /CS2_External/Backup/CollapseGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/CollapseGUI.h -------------------------------------------------------------------------------- /CS2_External/Backup/Handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Handles.h -------------------------------------------------------------------------------- /CS2_External/Backup/Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Language.cpp -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Czech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Czech.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Danish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Danish.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Dutch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Dutch.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/English.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/English.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Francais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Francais.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/German.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/German.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Greek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Greek.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Hungarian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Hungarian.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Korean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Korean.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Polish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Polish.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Portuguese.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Portuguese.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Romanian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Romanian.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Ruassian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Ruassian.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/SimplifiedChinese.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/SimplifiedChinese.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Slovak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Slovak.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Spanish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Spanish.h -------------------------------------------------------------------------------- /CS2_External/Backup/Languages/Turkish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Languages/Turkish.h -------------------------------------------------------------------------------- /CS2_External/Backup/Old Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Old Menu.h -------------------------------------------------------------------------------- /CS2_External/Backup/RCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/RCS.h -------------------------------------------------------------------------------- /CS2_External/Backup/Styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Styles.h -------------------------------------------------------------------------------- /CS2_External/Backup/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/Updater.h -------------------------------------------------------------------------------- /CS2_External/Backup/duck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Backup/duck.cpp -------------------------------------------------------------------------------- /CS2_External/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Bone.cpp -------------------------------------------------------------------------------- /CS2_External/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Bone.h -------------------------------------------------------------------------------- /CS2_External/CS2_External.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/CS2_External.aps -------------------------------------------------------------------------------- /CS2_External/CS2_External.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/CS2_External.rc -------------------------------------------------------------------------------- /CS2_External/CS2_External.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/CS2_External.vcxproj -------------------------------------------------------------------------------- /CS2_External/CS2_External.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/CS2_External.vcxproj.filters -------------------------------------------------------------------------------- /CS2_External/CS2_External.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/CS2_External.vcxproj.user -------------------------------------------------------------------------------- /CS2_External/Cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Cheats.cpp -------------------------------------------------------------------------------- /CS2_External/Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Cheats.h -------------------------------------------------------------------------------- /CS2_External/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Entity.cpp -------------------------------------------------------------------------------- /CS2_External/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Entity.h -------------------------------------------------------------------------------- /CS2_External/Features/Aimbot/Legitbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Aimbot/Legitbot.hpp -------------------------------------------------------------------------------- /CS2_External/Features/Aimbot/Ragebot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Aimbot/Ragebot.hpp -------------------------------------------------------------------------------- /CS2_External/Features/BombTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/BombTimer.h -------------------------------------------------------------------------------- /CS2_External/Features/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Debugger.h -------------------------------------------------------------------------------- /CS2_External/Features/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/ESP.h -------------------------------------------------------------------------------- /CS2_External/Features/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/GUI.h -------------------------------------------------------------------------------- /CS2_External/Features/GetWeaponIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/GetWeaponIcon.h -------------------------------------------------------------------------------- /CS2_External/Features/Glow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Glow.cpp -------------------------------------------------------------------------------- /CS2_External/Features/Glow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Glow.h -------------------------------------------------------------------------------- /CS2_External/Features/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Misc.cpp -------------------------------------------------------------------------------- /CS2_External/Features/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Misc.h -------------------------------------------------------------------------------- /CS2_External/Features/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Mouse.cpp -------------------------------------------------------------------------------- /CS2_External/Features/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/Mouse.h -------------------------------------------------------------------------------- /CS2_External/Features/RCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/RCS.h -------------------------------------------------------------------------------- /CS2_External/Features/SkinChanger/SkinChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/SkinChanger/SkinChanger.cpp -------------------------------------------------------------------------------- /CS2_External/Features/SkinChanger/SkinChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/SkinChanger/SkinChanger.h -------------------------------------------------------------------------------- /CS2_External/Features/SpectatorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/SpectatorList.h -------------------------------------------------------------------------------- /CS2_External/Features/StyleChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/StyleChanger.cpp -------------------------------------------------------------------------------- /CS2_External/Features/StyleChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Features/StyleChanger.h -------------------------------------------------------------------------------- /CS2_External/Font/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Font/IconsFontAwesome5.h -------------------------------------------------------------------------------- /CS2_External/Font/fa-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Font/fa-regular.ttf -------------------------------------------------------------------------------- /CS2_External/Font/fontArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Font/fontArray.h -------------------------------------------------------------------------------- /CS2_External/Font/stratum2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Font/stratum2.ttf -------------------------------------------------------------------------------- /CS2_External/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Game.cpp -------------------------------------------------------------------------------- /CS2_External/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Game.h -------------------------------------------------------------------------------- /CS2_External/MenuConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/MenuConfig.hpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui_Base.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui_Base.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui_Exception.hpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_External.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui_External.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_External.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui_External.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/OS-ImGui_Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/OS-ImGui_Struct.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imconfig.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_internal.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /CS2_External/OS-ImGui/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/OS-ImGui/stb/stb_image.h -------------------------------------------------------------------------------- /CS2_External/Offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Offsets.cpp -------------------------------------------------------------------------------- /CS2_External/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Offsets.h -------------------------------------------------------------------------------- /CS2_External/Radar/Radar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Radar/Radar.cpp -------------------------------------------------------------------------------- /CS2_External/Radar/Radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Radar/Radar.h -------------------------------------------------------------------------------- /CS2_External/Render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Render.hpp -------------------------------------------------------------------------------- /CS2_External/Resources/8964.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Resources/8964.h -------------------------------------------------------------------------------- /CS2_External/Resources/Images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Resources/Images.h -------------------------------------------------------------------------------- /CS2_External/Resources/Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Resources/Language.h -------------------------------------------------------------------------------- /CS2_External/Resources/Sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Resources/Sounds.h -------------------------------------------------------------------------------- /CS2_External/Resources/WeaponIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Resources/WeaponIcon.h -------------------------------------------------------------------------------- /CS2_External/TriggerBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/TriggerBot.cpp -------------------------------------------------------------------------------- /CS2_External/TriggerBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/TriggerBot.h -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/ConfigMenu.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/ConfigMenu.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/ConfigSaver.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/ConfigSaver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/ConfigSaver.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Format.h -------------------------------------------------------------------------------- /CS2_External/Utils/GlobalVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/GlobalVars.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/GlobalVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/GlobalVars.h -------------------------------------------------------------------------------- /CS2_External/Utils/Globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Globals.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Helpers.h -------------------------------------------------------------------------------- /CS2_External/Utils/Initial/Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Initial/Init.h -------------------------------------------------------------------------------- /CS2_External/Utils/Initial/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Initial/system.h -------------------------------------------------------------------------------- /CS2_External/Utils/MemorySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/MemorySearch.cpp -------------------------------------------------------------------------------- /CS2_External/Utils/ProcessManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/ProcessManager.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Random.h -------------------------------------------------------------------------------- /CS2_External/Utils/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/Style.h -------------------------------------------------------------------------------- /CS2_External/Utils/cpp-httplib/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/cpp-httplib/httplib.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/curl.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/curlver.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/easy.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/header.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/lib/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/lib/libcurl.dll -------------------------------------------------------------------------------- /CS2_External/Utils/curl/lib/libcurl_imp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/lib/libcurl_imp.exp -------------------------------------------------------------------------------- /CS2_External/Utils/curl/lib/libcurl_imp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/lib/libcurl_imp.lib -------------------------------------------------------------------------------- /CS2_External/Utils/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/mprintf.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/multi.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/options.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/stdcheaders.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/system.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/urlapi.h -------------------------------------------------------------------------------- /CS2_External/Utils/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/curl/websockets.h -------------------------------------------------------------------------------- /CS2_External/Utils/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/json/json.hpp -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/anchor.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/binary.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/contrib/anchordict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/contrib/anchordict.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/contrib/graphbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/contrib/graphbuilder.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/depthguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/depthguard.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/dll.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/emitfromevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/emitfromevents.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/emitter.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/emitterdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/emitterdef.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/emittermanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/emittermanip.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/emitterstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/emitterstyle.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/eventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/eventhandler.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/exceptions.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/lib/yaml-cpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/lib/yaml-cpp.lib -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/mark.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/convert.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/impl.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/iterator.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/iterator_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/iterator_fwd.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/memory.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/node.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/node_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/node_data.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/node_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/node_iterator.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/detail/node_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/detail/node_ref.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/emit.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/impl.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/iterator.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/node.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/parse.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/ptr.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/node/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/node/type.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/noexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/noexcept.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/null.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/ostream_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/ostream_wrapper.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/parser.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/stlemitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/stlemitter.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/traits.h -------------------------------------------------------------------------------- /CS2_External/Utils/yaml-cpp/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/Utils/yaml-cpp/yaml.h -------------------------------------------------------------------------------- /CS2_External/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/View.hpp -------------------------------------------------------------------------------- /CS2_External/driver/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/driver/driver.cpp -------------------------------------------------------------------------------- /CS2_External/driver/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/driver/driver.h -------------------------------------------------------------------------------- /CS2_External/driver/driver_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/driver/driver_data.h -------------------------------------------------------------------------------- /CS2_External/driver/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/driver/loader.h -------------------------------------------------------------------------------- /CS2_External/driver/nt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/driver/nt.hpp -------------------------------------------------------------------------------- /CS2_External/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/icon.ico -------------------------------------------------------------------------------- /CS2_External/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/main.cpp -------------------------------------------------------------------------------- /CS2_External/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/CS2_External/resource.h -------------------------------------------------------------------------------- /Guides/Resellers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Guides/Resellers.md -------------------------------------------------------------------------------- /Guides/images/ZhuPing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Guides/images/ZhuPing.jpg -------------------------------------------------------------------------------- /Guides/images/ZhuPing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Guides/images/ZhuPing2.jpg -------------------------------------------------------------------------------- /Guides/images/ZhuPing3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Guides/images/ZhuPing3.jpg -------------------------------------------------------------------------------- /Image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Image1.png -------------------------------------------------------------------------------- /Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Image2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/README.md -------------------------------------------------------------------------------- /Textures/Aimbot Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Textures/Aimbot Button.png -------------------------------------------------------------------------------- /Textures/Config Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Textures/Config Button.png -------------------------------------------------------------------------------- /Textures/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Textures/Logo.png -------------------------------------------------------------------------------- /Textures/Misc Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Textures/Misc Button.png -------------------------------------------------------------------------------- /Textures/NL logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Textures/NL logo.png -------------------------------------------------------------------------------- /Textures/Visual Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/Textures/Visual Button.png -------------------------------------------------------------------------------- /msyhbd.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/msyhbd.ttc -------------------------------------------------------------------------------- /ПРОЧИТАЙМЕНЯ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/ПРОЧИТАЙМЕНЯ.md -------------------------------------------------------------------------------- /自述文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakboat/AimStar-driver/HEAD/自述文档.md --------------------------------------------------------------------------------