├── DLLCore ├── DLLCore.vcxproj ├── DLLCore.vcxproj.filters ├── include │ ├── jdk │ │ ├── classfile_constants.h │ │ ├── jawt.h │ │ ├── jdwpTransport.h │ │ ├── jni.h │ │ ├── jvmti.h │ │ └── jvmticmlr.h │ └── minhook │ │ └── MinHook.h └── src │ ├── export.h │ ├── java.cpp │ ├── java.h │ └── rdi │ ├── ReflectiveDLLInjection.h │ ├── ReflectiveLoader.c │ └── ReflectiveLoader.h ├── Injector ├── Injector.vcxproj ├── Injector.vcxproj.filters ├── main.cpp └── socket.h ├── LauncherCore ├── LauncherCore.vcxproj ├── LauncherCore.vcxproj.filters ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h ├── lib │ └── glfw3.lib └── src │ ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h │ ├── injector.cpp │ ├── injector.h │ ├── launcher.h │ └── rdi │ ├── GetProcAddressR.c │ ├── GetProcAddressR.h │ ├── LoadLibraryR.c │ ├── LoadLibraryR.h │ └── ReflectiveDLLInjection.h ├── LiteDLL ├── LiteDLL.vcxproj ├── LiteDLL.vcxproj.filters └── src │ ├── classes.h │ └── dllmain.cpp ├── LiteLauncher ├── LiteLauncher.vcxproj ├── LiteLauncher.vcxproj.filters └── src │ ├── main.cpp │ ├── socket.cpp │ └── socket.h ├── README.md ├── SocketCore ├── SocketCore.vcxproj ├── SocketCore.vcxproj.filters └── src │ ├── rpc │ ├── rpcsocket.cpp │ └── rpcsocket.h │ └── ws │ └── websocket.h ├── Vape-DLLS ├── Agent │ └── dllmain.cpp ├── LiteDLL.dll ├── Vape4DLL.dll ├── Vape4DLL.zip ├── Vape_V4_Assets.zip ├── out.jar ├── rebuilt.dump.zip └── vape.jar ├── Vape.sln ├── Vape4DLL.vcxproj ├── Vape4DLL.vcxproj.filters ├── Vape4DLL ├── Vape4DLL.vcxproj ├── Vape4DLL.vcxproj.filters ├── assets │ ├── Z.class │ ├── a.class │ ├── c.class │ ├── g.class │ ├── proxima.ttf │ └── proximabd.ttf └── src │ ├── dllmain.cpp │ └── natives │ ├── forge.cpp │ ├── forge.h │ ├── main.cpp │ ├── main.h │ ├── reflection.cpp │ └── reflection.h ├── Vape4Launcher ├── Vape4Launcher.vcxproj ├── Vape4Launcher.vcxproj.filters ├── assets │ ├── Finished.png │ ├── Logo.png │ ├── background.png │ └── background_cn.png ├── imgui.ini └── src │ ├── main.cpp │ ├── menu.cpp │ ├── menu.h │ ├── socket.cpp │ └── socket.h ├── VapeV4DLLSold └── Vape4DLL.sln ├── curl ├── curl.h ├── curlver.h ├── easy.h ├── mprintf.h ├── multi.h ├── options.h ├── stdcheaders.h ├── system.h ├── typecheck-gcc.h └── urlapi.h ├── discord ├── discord_register.h └── discord_rpc.h ├── dlg ├── dlg.h └── output.h ├── freetype-gl ├── distance-field.c ├── distance-field.h ├── edtaa3func.c ├── edtaa3func.h ├── font-manager.c ├── font-manager.h ├── freetype-gl-errdef.h ├── freetype-gl.h ├── ftgl-utils.c ├── ftgl-utils.h ├── makefont.c ├── markup.h ├── opengl.h ├── platform.c ├── platform.h ├── text-buffer.c ├── text-buffer.h ├── texture-atlas.c ├── texture-atlas.h ├── texture-font.c ├── texture-font.h ├── utf8-utils.c └── utf8-utils.h ├── freetype ├── config │ ├── ftconfig.h │ ├── ftheader.h │ ├── ftmodule.h │ ├── ftoption.h │ ├── ftstdlib.h │ ├── integer-types.h │ ├── mac-support.h │ └── public-macros.h ├── freetype.h ├── ftadvanc.h ├── ftbbox.h ├── ftbdf.h ├── ftbitmap.h ├── ftbzip2.h ├── ftcache.h ├── ftchapters.h ├── ftcid.h ├── ftcolor.h ├── ftdriver.h ├── fterrdef.h ├── fterrors.h ├── ftfntfmt.h ├── ftgasp.h ├── ftglyph.h ├── ftgxval.h ├── ftgzip.h ├── ftimage.h ├── ftincrem.h ├── ftlcdfil.h ├── ftlist.h ├── ftlogging.h ├── ftlzw.h ├── ftmac.h ├── ftmm.h └── ftmodapi.h ├── ft2build.h ├── glad └── glad.h ├── jdk ├── classfile_constants.h ├── jawt.h ├── jdwpTransport.h ├── jni.h ├── jvmti.h └── jvmticmlr.h ├── resources ├── Z.class ├── a.class ├── c.class ├── g.class ├── proxima.ttf └── proximabd.ttf └── src ├── discord └── discord.h ├── dllmain.cpp ├── dllmain.h ├── font.cpp ├── font.h ├── java ├── a_class.cpp ├── a_class.h ├── b_class.cpp ├── b_class.h ├── java_class.h └── util │ ├── j_util.cpp │ └── j_util.h ├── json └── json.h ├── socket.cpp └── socket.h /DLLCore/DLLCore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/DLLCore.vcxproj -------------------------------------------------------------------------------- /DLLCore/DLLCore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/DLLCore.vcxproj.filters -------------------------------------------------------------------------------- /DLLCore/include/jdk/classfile_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/jdk/classfile_constants.h -------------------------------------------------------------------------------- /DLLCore/include/jdk/jawt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/jdk/jawt.h -------------------------------------------------------------------------------- /DLLCore/include/jdk/jdwpTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/jdk/jdwpTransport.h -------------------------------------------------------------------------------- /DLLCore/include/jdk/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/jdk/jni.h -------------------------------------------------------------------------------- /DLLCore/include/jdk/jvmti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/jdk/jvmti.h -------------------------------------------------------------------------------- /DLLCore/include/jdk/jvmticmlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/jdk/jvmticmlr.h -------------------------------------------------------------------------------- /DLLCore/include/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/include/minhook/MinHook.h -------------------------------------------------------------------------------- /DLLCore/src/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/src/export.h -------------------------------------------------------------------------------- /DLLCore/src/java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/src/java.cpp -------------------------------------------------------------------------------- /DLLCore/src/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/src/java.h -------------------------------------------------------------------------------- /DLLCore/src/rdi/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/src/rdi/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /DLLCore/src/rdi/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/src/rdi/ReflectiveLoader.c -------------------------------------------------------------------------------- /DLLCore/src/rdi/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/DLLCore/src/rdi/ReflectiveLoader.h -------------------------------------------------------------------------------- /Injector/Injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Injector/Injector.vcxproj -------------------------------------------------------------------------------- /Injector/Injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Injector/Injector.vcxproj.filters -------------------------------------------------------------------------------- /Injector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Injector/main.cpp -------------------------------------------------------------------------------- /Injector/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Injector/socket.h -------------------------------------------------------------------------------- /LauncherCore/LauncherCore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/LauncherCore.vcxproj -------------------------------------------------------------------------------- /LauncherCore/LauncherCore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/LauncherCore.vcxproj.filters -------------------------------------------------------------------------------- /LauncherCore/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /LauncherCore/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /LauncherCore/lib/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/lib/glfw3.lib -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imconfig.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_impl_glfw.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_internal.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /LauncherCore/src/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /LauncherCore/src/injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/injector.cpp -------------------------------------------------------------------------------- /LauncherCore/src/injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/injector.h -------------------------------------------------------------------------------- /LauncherCore/src/launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/launcher.h -------------------------------------------------------------------------------- /LauncherCore/src/rdi/GetProcAddressR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/rdi/GetProcAddressR.c -------------------------------------------------------------------------------- /LauncherCore/src/rdi/GetProcAddressR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/rdi/GetProcAddressR.h -------------------------------------------------------------------------------- /LauncherCore/src/rdi/LoadLibraryR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/rdi/LoadLibraryR.c -------------------------------------------------------------------------------- /LauncherCore/src/rdi/LoadLibraryR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/rdi/LoadLibraryR.h -------------------------------------------------------------------------------- /LauncherCore/src/rdi/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LauncherCore/src/rdi/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /LiteDLL/LiteDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteDLL/LiteDLL.vcxproj -------------------------------------------------------------------------------- /LiteDLL/LiteDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteDLL/LiteDLL.vcxproj.filters -------------------------------------------------------------------------------- /LiteDLL/src/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteDLL/src/classes.h -------------------------------------------------------------------------------- /LiteDLL/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteDLL/src/dllmain.cpp -------------------------------------------------------------------------------- /LiteLauncher/LiteLauncher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteLauncher/LiteLauncher.vcxproj -------------------------------------------------------------------------------- /LiteLauncher/LiteLauncher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteLauncher/LiteLauncher.vcxproj.filters -------------------------------------------------------------------------------- /LiteLauncher/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteLauncher/src/main.cpp -------------------------------------------------------------------------------- /LiteLauncher/src/socket.cpp: -------------------------------------------------------------------------------- 1 | #include "socket.h" -------------------------------------------------------------------------------- /LiteLauncher/src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/LiteLauncher/src/socket.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/README.md -------------------------------------------------------------------------------- /SocketCore/SocketCore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/SocketCore/SocketCore.vcxproj -------------------------------------------------------------------------------- /SocketCore/SocketCore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/SocketCore/SocketCore.vcxproj.filters -------------------------------------------------------------------------------- /SocketCore/src/rpc/rpcsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/SocketCore/src/rpc/rpcsocket.cpp -------------------------------------------------------------------------------- /SocketCore/src/rpc/rpcsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/SocketCore/src/rpc/rpcsocket.h -------------------------------------------------------------------------------- /SocketCore/src/ws/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/SocketCore/src/ws/websocket.h -------------------------------------------------------------------------------- /Vape-DLLS/Agent/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/Agent/dllmain.cpp -------------------------------------------------------------------------------- /Vape-DLLS/LiteDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/LiteDLL.dll -------------------------------------------------------------------------------- /Vape-DLLS/Vape4DLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/Vape4DLL.dll -------------------------------------------------------------------------------- /Vape-DLLS/Vape4DLL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/Vape4DLL.zip -------------------------------------------------------------------------------- /Vape-DLLS/Vape_V4_Assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/Vape_V4_Assets.zip -------------------------------------------------------------------------------- /Vape-DLLS/out.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/out.jar -------------------------------------------------------------------------------- /Vape-DLLS/rebuilt.dump.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/rebuilt.dump.zip -------------------------------------------------------------------------------- /Vape-DLLS/vape.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape-DLLS/vape.jar -------------------------------------------------------------------------------- /Vape.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape.sln -------------------------------------------------------------------------------- /Vape4DLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL.vcxproj -------------------------------------------------------------------------------- /Vape4DLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL.vcxproj.filters -------------------------------------------------------------------------------- /Vape4DLL/Vape4DLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/Vape4DLL.vcxproj -------------------------------------------------------------------------------- /Vape4DLL/Vape4DLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/Vape4DLL.vcxproj.filters -------------------------------------------------------------------------------- /Vape4DLL/assets/Z.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/assets/Z.class -------------------------------------------------------------------------------- /Vape4DLL/assets/a.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/assets/a.class -------------------------------------------------------------------------------- /Vape4DLL/assets/c.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/assets/c.class -------------------------------------------------------------------------------- /Vape4DLL/assets/g.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/assets/g.class -------------------------------------------------------------------------------- /Vape4DLL/assets/proxima.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/assets/proxima.ttf -------------------------------------------------------------------------------- /Vape4DLL/assets/proximabd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/assets/proximabd.ttf -------------------------------------------------------------------------------- /Vape4DLL/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/dllmain.cpp -------------------------------------------------------------------------------- /Vape4DLL/src/natives/forge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/natives/forge.cpp -------------------------------------------------------------------------------- /Vape4DLL/src/natives/forge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/natives/forge.h -------------------------------------------------------------------------------- /Vape4DLL/src/natives/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/natives/main.cpp -------------------------------------------------------------------------------- /Vape4DLL/src/natives/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/natives/main.h -------------------------------------------------------------------------------- /Vape4DLL/src/natives/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/natives/reflection.cpp -------------------------------------------------------------------------------- /Vape4DLL/src/natives/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4DLL/src/natives/reflection.h -------------------------------------------------------------------------------- /Vape4Launcher/Vape4Launcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/Vape4Launcher.vcxproj -------------------------------------------------------------------------------- /Vape4Launcher/Vape4Launcher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/Vape4Launcher.vcxproj.filters -------------------------------------------------------------------------------- /Vape4Launcher/assets/Finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/assets/Finished.png -------------------------------------------------------------------------------- /Vape4Launcher/assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/assets/Logo.png -------------------------------------------------------------------------------- /Vape4Launcher/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/assets/background.png -------------------------------------------------------------------------------- /Vape4Launcher/assets/background_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/assets/background_cn.png -------------------------------------------------------------------------------- /Vape4Launcher/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/imgui.ini -------------------------------------------------------------------------------- /Vape4Launcher/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/src/main.cpp -------------------------------------------------------------------------------- /Vape4Launcher/src/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/src/menu.cpp -------------------------------------------------------------------------------- /Vape4Launcher/src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/src/menu.h -------------------------------------------------------------------------------- /Vape4Launcher/src/socket.cpp: -------------------------------------------------------------------------------- 1 | #include "socket.h" -------------------------------------------------------------------------------- /Vape4Launcher/src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/Vape4Launcher/src/socket.h -------------------------------------------------------------------------------- /VapeV4DLLSold/Vape4DLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/VapeV4DLLSold/Vape4DLL.sln -------------------------------------------------------------------------------- /curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/curl.h -------------------------------------------------------------------------------- /curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/curlver.h -------------------------------------------------------------------------------- /curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/easy.h -------------------------------------------------------------------------------- /curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/mprintf.h -------------------------------------------------------------------------------- /curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/multi.h -------------------------------------------------------------------------------- /curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/options.h -------------------------------------------------------------------------------- /curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/stdcheaders.h -------------------------------------------------------------------------------- /curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/system.h -------------------------------------------------------------------------------- /curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/curl/urlapi.h -------------------------------------------------------------------------------- /discord/discord_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/discord/discord_register.h -------------------------------------------------------------------------------- /discord/discord_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/discord/discord_rpc.h -------------------------------------------------------------------------------- /dlg/dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/dlg/dlg.h -------------------------------------------------------------------------------- /dlg/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/dlg/output.h -------------------------------------------------------------------------------- /freetype-gl/distance-field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/distance-field.c -------------------------------------------------------------------------------- /freetype-gl/distance-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/distance-field.h -------------------------------------------------------------------------------- /freetype-gl/edtaa3func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/edtaa3func.c -------------------------------------------------------------------------------- /freetype-gl/edtaa3func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/edtaa3func.h -------------------------------------------------------------------------------- /freetype-gl/font-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/font-manager.c -------------------------------------------------------------------------------- /freetype-gl/font-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/font-manager.h -------------------------------------------------------------------------------- /freetype-gl/freetype-gl-errdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/freetype-gl-errdef.h -------------------------------------------------------------------------------- /freetype-gl/freetype-gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/freetype-gl.h -------------------------------------------------------------------------------- /freetype-gl/ftgl-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/ftgl-utils.c -------------------------------------------------------------------------------- /freetype-gl/ftgl-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/ftgl-utils.h -------------------------------------------------------------------------------- /freetype-gl/makefont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/makefont.c -------------------------------------------------------------------------------- /freetype-gl/markup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/markup.h -------------------------------------------------------------------------------- /freetype-gl/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/opengl.h -------------------------------------------------------------------------------- /freetype-gl/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/platform.c -------------------------------------------------------------------------------- /freetype-gl/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/platform.h -------------------------------------------------------------------------------- /freetype-gl/text-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/text-buffer.c -------------------------------------------------------------------------------- /freetype-gl/text-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/text-buffer.h -------------------------------------------------------------------------------- /freetype-gl/texture-atlas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/texture-atlas.c -------------------------------------------------------------------------------- /freetype-gl/texture-atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/texture-atlas.h -------------------------------------------------------------------------------- /freetype-gl/texture-font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/texture-font.c -------------------------------------------------------------------------------- /freetype-gl/texture-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/texture-font.h -------------------------------------------------------------------------------- /freetype-gl/utf8-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/utf8-utils.c -------------------------------------------------------------------------------- /freetype-gl/utf8-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype-gl/utf8-utils.h -------------------------------------------------------------------------------- /freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/ftheader.h -------------------------------------------------------------------------------- /freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/ftoption.h -------------------------------------------------------------------------------- /freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /freetype/config/integer-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/integer-types.h -------------------------------------------------------------------------------- /freetype/config/mac-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/mac-support.h -------------------------------------------------------------------------------- /freetype/config/public-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/config/public-macros.h -------------------------------------------------------------------------------- /freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/freetype.h -------------------------------------------------------------------------------- /freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftadvanc.h -------------------------------------------------------------------------------- /freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftbbox.h -------------------------------------------------------------------------------- /freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftbdf.h -------------------------------------------------------------------------------- /freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftbitmap.h -------------------------------------------------------------------------------- /freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftbzip2.h -------------------------------------------------------------------------------- /freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftcache.h -------------------------------------------------------------------------------- /freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftchapters.h -------------------------------------------------------------------------------- /freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftcid.h -------------------------------------------------------------------------------- /freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftcolor.h -------------------------------------------------------------------------------- /freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftdriver.h -------------------------------------------------------------------------------- /freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/fterrdef.h -------------------------------------------------------------------------------- /freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/fterrors.h -------------------------------------------------------------------------------- /freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftgasp.h -------------------------------------------------------------------------------- /freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftglyph.h -------------------------------------------------------------------------------- /freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftgxval.h -------------------------------------------------------------------------------- /freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftgzip.h -------------------------------------------------------------------------------- /freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftimage.h -------------------------------------------------------------------------------- /freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftincrem.h -------------------------------------------------------------------------------- /freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftlist.h -------------------------------------------------------------------------------- /freetype/ftlogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftlogging.h -------------------------------------------------------------------------------- /freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftlzw.h -------------------------------------------------------------------------------- /freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftmac.h -------------------------------------------------------------------------------- /freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftmm.h -------------------------------------------------------------------------------- /freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/freetype/ftmodapi.h -------------------------------------------------------------------------------- /ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/ft2build.h -------------------------------------------------------------------------------- /glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/glad/glad.h -------------------------------------------------------------------------------- /jdk/classfile_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/jdk/classfile_constants.h -------------------------------------------------------------------------------- /jdk/jawt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/jdk/jawt.h -------------------------------------------------------------------------------- /jdk/jdwpTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/jdk/jdwpTransport.h -------------------------------------------------------------------------------- /jdk/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/jdk/jni.h -------------------------------------------------------------------------------- /jdk/jvmti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/jdk/jvmti.h -------------------------------------------------------------------------------- /jdk/jvmticmlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/jdk/jvmticmlr.h -------------------------------------------------------------------------------- /resources/Z.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/resources/Z.class -------------------------------------------------------------------------------- /resources/a.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/resources/a.class -------------------------------------------------------------------------------- /resources/c.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/resources/c.class -------------------------------------------------------------------------------- /resources/g.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/resources/g.class -------------------------------------------------------------------------------- /resources/proxima.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/resources/proxima.ttf -------------------------------------------------------------------------------- /resources/proximabd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/resources/proximabd.ttf -------------------------------------------------------------------------------- /src/discord/discord.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/dllmain.h -------------------------------------------------------------------------------- /src/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/font.cpp -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/font.h -------------------------------------------------------------------------------- /src/java/a_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/a_class.cpp -------------------------------------------------------------------------------- /src/java/a_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/a_class.h -------------------------------------------------------------------------------- /src/java/b_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/b_class.cpp -------------------------------------------------------------------------------- /src/java/b_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/b_class.h -------------------------------------------------------------------------------- /src/java/java_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/java_class.h -------------------------------------------------------------------------------- /src/java/util/j_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/util/j_util.cpp -------------------------------------------------------------------------------- /src/java/util/j_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/java/util/j_util.h -------------------------------------------------------------------------------- /src/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/json/json.h -------------------------------------------------------------------------------- /src/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/socket.cpp -------------------------------------------------------------------------------- /src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royalxvirus/Vape-Source-Code/HEAD/src/socket.h --------------------------------------------------------------------------------