├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── src ├── Phantom.cpp ├── Phantom.h ├── cheats │ ├── AimAssist.cpp │ ├── AimAssist.h │ ├── AimBot.cpp │ ├── AimBot.h │ ├── AutoClicker.cpp │ ├── AutoClicker.h │ ├── Cheat.cpp │ ├── Cheat.h │ ├── Clip.cpp │ ├── Clip.h │ ├── FastPlace.cpp │ ├── FastPlace.h │ ├── HitBox.cpp │ ├── HitBox.h │ ├── HitDelayFix.cpp │ ├── HitDelayFix.h │ ├── Reach.cpp │ ├── Reach.h │ ├── STap.cpp │ ├── STap.h │ ├── Velocity.cpp │ └── Velocity.h ├── library.cpp ├── mapping │ ├── AbstractClass.cpp │ ├── AbstractClass.h │ ├── CM.h │ ├── Mapping.cpp │ ├── Mapping.h │ ├── Mem.h │ └── impl │ │ ├── java │ │ ├── io │ │ │ ├── JavaPrintStream.cpp │ │ │ └── JavaPrintStream.h │ │ ├── lang │ │ │ ├── JavaSystem.cpp │ │ │ └── JavaSystem.h │ │ └── util │ │ │ ├── JavaList.cpp │ │ │ ├── JavaList.h │ │ │ ├── JavaSet.cpp │ │ │ └── JavaSet.h │ │ ├── net │ │ └── minecraft │ │ │ ├── client │ │ │ ├── Minecraft.cpp │ │ │ ├── Minecraft.h │ │ │ ├── multiplayer │ │ │ │ ├── WorldClient.cpp │ │ │ │ └── WorldClient.h │ │ │ ├── renderer │ │ │ │ ├── EntityRenderer.cpp │ │ │ │ └── EntityRenderer.h │ │ │ └── settings │ │ │ │ ├── GameSettings.cpp │ │ │ │ ├── GameSettings.h │ │ │ │ ├── KeyBinding.cpp │ │ │ │ └── KeyBinding.h │ │ │ ├── entity │ │ │ ├── Entity.cpp │ │ │ ├── Entity.h │ │ │ ├── EntityLivingBase.cpp │ │ │ ├── EntityLivingBase.h │ │ │ ├── EntityPlayerSP.cpp │ │ │ ├── EntityPlayerSP.h │ │ │ └── player │ │ │ │ ├── EntityPlayer.cpp │ │ │ │ └── EntityPlayer.h │ │ │ └── util │ │ │ ├── AxisAlignedBB.cpp │ │ │ ├── AxisAlignedBB.h │ │ │ ├── MovingObjectPosition.cpp │ │ │ ├── MovingObjectPosition.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── Vec3.cpp │ │ │ └── Vec3.h │ │ └── org │ │ └── lwjgl │ │ └── input │ │ ├── Mouse.cpp │ │ └── Mouse.h ├── ui │ ├── KeyManager.cpp │ ├── KeyManager.h │ ├── PhantomWindow.cpp │ └── PhantomWindow.h └── utils │ ├── ImGuiUtils.cpp │ ├── ImGuiUtils.h │ ├── JvmUtils.cpp │ ├── JvmUtils.h │ ├── MCUtils.cpp │ ├── MCUtils.h │ ├── MSTimer.cpp │ ├── MSTimer.h │ ├── MathHelper.cpp │ ├── MathHelper.h │ ├── MiscUtils.cpp │ ├── MiscUtils.h │ ├── XUtils.cpp │ └── XUtils.h └── vendor └── imgui ├── LICENSE.txt ├── backends ├── imgui_impl_opengl3_loader.h └── vulkan │ ├── generate_spv.sh │ ├── glsl_shader.frag │ └── glsl_shader.vert ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_opengl3.cpp ├── imgui_impl_opengl3.h ├── imgui_impl_sdl.cpp ├── imgui_impl_sdl.h ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h └── misc ├── README.txt ├── cpp ├── README.txt ├── imgui_stdlib.cpp └── imgui_stdlib.h ├── debuggers ├── README.txt ├── imgui.gdb ├── imgui.natstepfilter └── imgui.natvis ├── fonts ├── Cousine-Regular.ttf ├── DroidSans.ttf ├── Karla-Regular.ttf ├── ProggyClean.ttf ├── ProggyTiny.ttf ├── Roboto-Medium.ttf └── binary_to_compressed_c.cpp ├── freetype ├── README.md ├── imgui_freetype.cpp └── imgui_freetype.h └── single_file └── imgui_single_file.h /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/README.md -------------------------------------------------------------------------------- /src/Phantom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/Phantom.cpp -------------------------------------------------------------------------------- /src/Phantom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/Phantom.h -------------------------------------------------------------------------------- /src/cheats/AimAssist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/AimAssist.cpp -------------------------------------------------------------------------------- /src/cheats/AimAssist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/AimAssist.h -------------------------------------------------------------------------------- /src/cheats/AimBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/AimBot.cpp -------------------------------------------------------------------------------- /src/cheats/AimBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/AimBot.h -------------------------------------------------------------------------------- /src/cheats/AutoClicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/AutoClicker.cpp -------------------------------------------------------------------------------- /src/cheats/AutoClicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/AutoClicker.h -------------------------------------------------------------------------------- /src/cheats/Cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Cheat.cpp -------------------------------------------------------------------------------- /src/cheats/Cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Cheat.h -------------------------------------------------------------------------------- /src/cheats/Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Clip.cpp -------------------------------------------------------------------------------- /src/cheats/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Clip.h -------------------------------------------------------------------------------- /src/cheats/FastPlace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/FastPlace.cpp -------------------------------------------------------------------------------- /src/cheats/FastPlace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/FastPlace.h -------------------------------------------------------------------------------- /src/cheats/HitBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/HitBox.cpp -------------------------------------------------------------------------------- /src/cheats/HitBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/HitBox.h -------------------------------------------------------------------------------- /src/cheats/HitDelayFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/HitDelayFix.cpp -------------------------------------------------------------------------------- /src/cheats/HitDelayFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/HitDelayFix.h -------------------------------------------------------------------------------- /src/cheats/Reach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Reach.cpp -------------------------------------------------------------------------------- /src/cheats/Reach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Reach.h -------------------------------------------------------------------------------- /src/cheats/STap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/STap.cpp -------------------------------------------------------------------------------- /src/cheats/STap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/STap.h -------------------------------------------------------------------------------- /src/cheats/Velocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Velocity.cpp -------------------------------------------------------------------------------- /src/cheats/Velocity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/cheats/Velocity.h -------------------------------------------------------------------------------- /src/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/library.cpp -------------------------------------------------------------------------------- /src/mapping/AbstractClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/AbstractClass.cpp -------------------------------------------------------------------------------- /src/mapping/AbstractClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/AbstractClass.h -------------------------------------------------------------------------------- /src/mapping/CM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/CM.h -------------------------------------------------------------------------------- /src/mapping/Mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/Mapping.cpp -------------------------------------------------------------------------------- /src/mapping/Mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/Mapping.h -------------------------------------------------------------------------------- /src/mapping/Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/Mem.h -------------------------------------------------------------------------------- /src/mapping/impl/java/io/JavaPrintStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/io/JavaPrintStream.cpp -------------------------------------------------------------------------------- /src/mapping/impl/java/io/JavaPrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/io/JavaPrintStream.h -------------------------------------------------------------------------------- /src/mapping/impl/java/lang/JavaSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/lang/JavaSystem.cpp -------------------------------------------------------------------------------- /src/mapping/impl/java/lang/JavaSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/lang/JavaSystem.h -------------------------------------------------------------------------------- /src/mapping/impl/java/util/JavaList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/util/JavaList.cpp -------------------------------------------------------------------------------- /src/mapping/impl/java/util/JavaList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/util/JavaList.h -------------------------------------------------------------------------------- /src/mapping/impl/java/util/JavaSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/util/JavaSet.cpp -------------------------------------------------------------------------------- /src/mapping/impl/java/util/JavaSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/java/util/JavaSet.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/Minecraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/Minecraft.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/Minecraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/Minecraft.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/multiplayer/WorldClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/multiplayer/WorldClient.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/multiplayer/WorldClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/multiplayer/WorldClient.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/renderer/EntityRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/renderer/EntityRenderer.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/renderer/EntityRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/renderer/EntityRenderer.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/settings/GameSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/settings/GameSettings.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/settings/GameSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/settings/GameSettings.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/settings/KeyBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/settings/KeyBinding.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/client/settings/KeyBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/client/settings/KeyBinding.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/Entity.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/Entity.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/EntityLivingBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/EntityLivingBase.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/EntityLivingBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/EntityLivingBase.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/EntityPlayerSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/EntityPlayerSP.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/EntityPlayerSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/EntityPlayerSP.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/player/EntityPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/player/EntityPlayer.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/entity/player/EntityPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/entity/player/EntityPlayer.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/AxisAlignedBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/AxisAlignedBB.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/AxisAlignedBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/AxisAlignedBB.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/MovingObjectPosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/MovingObjectPosition.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/MovingObjectPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/MovingObjectPosition.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/Timer.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/Timer.h -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/Vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/Vec3.cpp -------------------------------------------------------------------------------- /src/mapping/impl/net/minecraft/util/Vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/net/minecraft/util/Vec3.h -------------------------------------------------------------------------------- /src/mapping/impl/org/lwjgl/input/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/org/lwjgl/input/Mouse.cpp -------------------------------------------------------------------------------- /src/mapping/impl/org/lwjgl/input/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/mapping/impl/org/lwjgl/input/Mouse.h -------------------------------------------------------------------------------- /src/ui/KeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/ui/KeyManager.cpp -------------------------------------------------------------------------------- /src/ui/KeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/ui/KeyManager.h -------------------------------------------------------------------------------- /src/ui/PhantomWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/ui/PhantomWindow.cpp -------------------------------------------------------------------------------- /src/ui/PhantomWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/ui/PhantomWindow.h -------------------------------------------------------------------------------- /src/utils/ImGuiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/ImGuiUtils.cpp -------------------------------------------------------------------------------- /src/utils/ImGuiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/ImGuiUtils.h -------------------------------------------------------------------------------- /src/utils/JvmUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/JvmUtils.cpp -------------------------------------------------------------------------------- /src/utils/JvmUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/JvmUtils.h -------------------------------------------------------------------------------- /src/utils/MCUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MCUtils.cpp -------------------------------------------------------------------------------- /src/utils/MCUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MCUtils.h -------------------------------------------------------------------------------- /src/utils/MSTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MSTimer.cpp -------------------------------------------------------------------------------- /src/utils/MSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MSTimer.h -------------------------------------------------------------------------------- /src/utils/MathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MathHelper.cpp -------------------------------------------------------------------------------- /src/utils/MathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MathHelper.h -------------------------------------------------------------------------------- /src/utils/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MiscUtils.cpp -------------------------------------------------------------------------------- /src/utils/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/MiscUtils.h -------------------------------------------------------------------------------- /src/utils/XUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/XUtils.cpp -------------------------------------------------------------------------------- /src/utils/XUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/src/utils/XUtils.h -------------------------------------------------------------------------------- /vendor/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/LICENSE.txt -------------------------------------------------------------------------------- /vendor/imgui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/imgui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imconfig.h -------------------------------------------------------------------------------- /vendor/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui.h -------------------------------------------------------------------------------- /vendor/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /vendor/imgui/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_impl_sdl.h -------------------------------------------------------------------------------- /vendor/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_internal.h -------------------------------------------------------------------------------- /vendor/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /vendor/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /vendor/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /vendor/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /vendor/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /vendor/imgui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/README.txt -------------------------------------------------------------------------------- /vendor/imgui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/cpp/README.txt -------------------------------------------------------------------------------- /vendor/imgui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /vendor/imgui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/debuggers/README.txt -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/imgui.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/debuggers/imgui.natstepfilter -------------------------------------------------------------------------------- /vendor/imgui/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /vendor/imgui/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /vendor/imgui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/freetype/README.md -------------------------------------------------------------------------------- /vendor/imgui/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /vendor/imgui/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /vendor/imgui/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomePineaple/Phantom/HEAD/vendor/imgui/misc/single_file/imgui_single_file.h --------------------------------------------------------------------------------