├── .gitattributes ├── .gitignore ├── Emulator ├── Engine │ ├── Callbacks │ │ ├── CallbacksSystem.cpp │ │ └── CallbacksSystem.hpp │ ├── EmulatorEngine.cpp │ ├── EmulatorEngine.hpp │ ├── Tables │ │ ├── CheatTables.hpp │ │ ├── TablesSystem.cpp │ │ └── TablesSystem.hpp │ └── Types │ │ ├── TypesSystem.cpp │ │ └── TypesSystem.hpp ├── Gui │ ├── Gui.cpp │ ├── Gui.hpp │ └── GuiElements.hpp └── Math │ ├── Angle.hpp │ ├── Math.hpp │ └── Vectors │ ├── Vector2.hpp │ ├── Vector3.hpp │ └── Vector4.hpp ├── Includes ├── FNV1A │ └── FNV1A.hpp ├── Fonts │ ├── faprolight.hpp │ ├── hashes.h │ └── roboto.hpp ├── LuaJIT │ ├── buildvm.h │ ├── buildvm_libbc.h │ ├── lauxlib.h │ ├── lj_alloc.h │ ├── lj_arch.h │ ├── lj_asm.h │ ├── lj_asm_arm.h │ ├── lj_asm_arm64.h │ ├── lj_asm_mips.h │ ├── lj_asm_ppc.h │ ├── lj_asm_x86.h │ ├── lj_bc.h │ ├── lj_bcdump.h │ ├── lj_buf.h │ ├── lj_carith.h │ ├── lj_ccall.h │ ├── lj_ccallback.h │ ├── lj_cconv.h │ ├── lj_cdata.h │ ├── lj_char.h │ ├── lj_clib.h │ ├── lj_cparse.h │ ├── lj_crecord.h │ ├── lj_ctype.h │ ├── lj_debug.h │ ├── lj_def.h │ ├── lj_dispatch.h │ ├── lj_emit_arm.h │ ├── lj_emit_arm64.h │ ├── lj_emit_mips.h │ ├── lj_emit_ppc.h │ ├── lj_emit_x86.h │ ├── lj_err.h │ ├── lj_errmsg.h │ ├── lj_ff.h │ ├── lj_ffrecord.h │ ├── lj_frame.h │ ├── lj_func.h │ ├── lj_gc.h │ ├── lj_gdbjit.h │ ├── lj_ir.h │ ├── lj_ircall.h │ ├── lj_iropt.h │ ├── lj_jit.h │ ├── lj_lex.h │ ├── lj_lib.h │ ├── lj_mcode.h │ ├── lj_meta.h │ ├── lj_obj.h │ ├── lj_parse.h │ ├── lj_profile.h │ ├── lj_record.h │ ├── lj_snap.h │ ├── lj_state.h │ ├── lj_str.h │ ├── lj_strfmt.h │ ├── lj_strscan.h │ ├── lj_tab.h │ ├── lj_target.h │ ├── lj_target_arm.h │ ├── lj_target_arm64.h │ ├── lj_target_mips.h │ ├── lj_target_ppc.h │ ├── lj_target_x86.h │ ├── lj_trace.h │ ├── lj_traceerr.h │ ├── lj_udata.h │ ├── lj_vm.h │ ├── lj_vmevent.h │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── luajit.h │ └── lualib.h └── sol │ ├── config.hpp │ ├── forward.hpp │ └── sol.hpp ├── Libraries ├── ImGUI │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h └── LuaJIT │ ├── buildvm.lib │ ├── lua51.lib │ ├── luajit.lib │ └── minilua.lib ├── README.md ├── ScriptEmu.sln ├── ScriptEmu.vcxproj ├── ScriptEmu.vcxproj.filters ├── ScriptEmu.vcxproj.user ├── imgui.ini └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/.gitignore -------------------------------------------------------------------------------- /Emulator/Engine/Callbacks/CallbacksSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Callbacks/CallbacksSystem.cpp -------------------------------------------------------------------------------- /Emulator/Engine/Callbacks/CallbacksSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Callbacks/CallbacksSystem.hpp -------------------------------------------------------------------------------- /Emulator/Engine/EmulatorEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/EmulatorEngine.cpp -------------------------------------------------------------------------------- /Emulator/Engine/EmulatorEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/EmulatorEngine.hpp -------------------------------------------------------------------------------- /Emulator/Engine/Tables/CheatTables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Tables/CheatTables.hpp -------------------------------------------------------------------------------- /Emulator/Engine/Tables/TablesSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Tables/TablesSystem.cpp -------------------------------------------------------------------------------- /Emulator/Engine/Tables/TablesSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Tables/TablesSystem.hpp -------------------------------------------------------------------------------- /Emulator/Engine/Types/TypesSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Types/TypesSystem.cpp -------------------------------------------------------------------------------- /Emulator/Engine/Types/TypesSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Engine/Types/TypesSystem.hpp -------------------------------------------------------------------------------- /Emulator/Gui/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Gui/Gui.cpp -------------------------------------------------------------------------------- /Emulator/Gui/Gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Gui/Gui.hpp -------------------------------------------------------------------------------- /Emulator/Gui/GuiElements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Gui/GuiElements.hpp -------------------------------------------------------------------------------- /Emulator/Math/Angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Math/Angle.hpp -------------------------------------------------------------------------------- /Emulator/Math/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Math/Math.hpp -------------------------------------------------------------------------------- /Emulator/Math/Vectors/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Math/Vectors/Vector2.hpp -------------------------------------------------------------------------------- /Emulator/Math/Vectors/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Math/Vectors/Vector3.hpp -------------------------------------------------------------------------------- /Emulator/Math/Vectors/Vector4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Emulator/Math/Vectors/Vector4.hpp -------------------------------------------------------------------------------- /Includes/FNV1A/FNV1A.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/FNV1A/FNV1A.hpp -------------------------------------------------------------------------------- /Includes/Fonts/faprolight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/Fonts/faprolight.hpp -------------------------------------------------------------------------------- /Includes/Fonts/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/Fonts/hashes.h -------------------------------------------------------------------------------- /Includes/Fonts/roboto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/Fonts/roboto.hpp -------------------------------------------------------------------------------- /Includes/LuaJIT/buildvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/buildvm.h -------------------------------------------------------------------------------- /Includes/LuaJIT/buildvm_libbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/buildvm_libbc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lauxlib.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_alloc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_arch.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_asm.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_asm_arm.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_asm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_asm_arm64.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_asm_mips.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_asm_ppc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_asm_x86.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_bc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_bcdump.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_buf.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_carith.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ccall.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ccallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ccallback.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_cconv.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_cdata.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_char.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_clib.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_cparse.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_crecord.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ctype.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_debug.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_def.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_dispatch.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_emit_arm.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_emit_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_emit_arm64.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_emit_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_emit_mips.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_emit_ppc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_emit_x86.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_err.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_errmsg.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ff.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ffrecord.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_frame.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_func.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_gc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_gdbjit.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ir.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_ircall.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_iropt.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_jit.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_lex.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_lib.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_mcode.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_meta.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_obj.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_parse.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_profile.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_record.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_snap.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_state.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_str.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_strfmt.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_strscan.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_tab.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_target.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_target_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_target_arm.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_target_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_target_arm64.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_target_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_target_mips.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_target_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_target_ppc.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_target_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_target_x86.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_trace.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_traceerr.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_udata.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_vm.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lj_vmevent.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lua.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lua.hpp -------------------------------------------------------------------------------- /Includes/LuaJIT/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/luaconf.h -------------------------------------------------------------------------------- /Includes/LuaJIT/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/luajit.h -------------------------------------------------------------------------------- /Includes/LuaJIT/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/LuaJIT/lualib.h -------------------------------------------------------------------------------- /Includes/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/sol/config.hpp -------------------------------------------------------------------------------- /Includes/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/sol/forward.hpp -------------------------------------------------------------------------------- /Includes/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Includes/sol/sol.hpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imconfig.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_demo.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_draw.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_impl_win32.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_internal.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_tables.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imgui_widgets.cpp -------------------------------------------------------------------------------- /Libraries/ImGUI/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imstb_rectpack.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imstb_textedit.h -------------------------------------------------------------------------------- /Libraries/ImGUI/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/ImGUI/imstb_truetype.h -------------------------------------------------------------------------------- /Libraries/LuaJIT/buildvm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/LuaJIT/buildvm.lib -------------------------------------------------------------------------------- /Libraries/LuaJIT/lua51.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/LuaJIT/lua51.lib -------------------------------------------------------------------------------- /Libraries/LuaJIT/luajit.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/LuaJIT/luajit.lib -------------------------------------------------------------------------------- /Libraries/LuaJIT/minilua.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/Libraries/LuaJIT/minilua.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/README.md -------------------------------------------------------------------------------- /ScriptEmu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/ScriptEmu.sln -------------------------------------------------------------------------------- /ScriptEmu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/ScriptEmu.vcxproj -------------------------------------------------------------------------------- /ScriptEmu.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/ScriptEmu.vcxproj.filters -------------------------------------------------------------------------------- /ScriptEmu.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/ScriptEmu.vcxproj.user -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/imgui.ini -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapdragon/ScriptEmu/HEAD/main.cpp --------------------------------------------------------------------------------