├── .gitattributes ├── .github └── workflows │ ├── debug-build.yml │ └── nightly-build.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── CppProperties.json ├── LICENSE ├── LatiteRewrite.rc ├── LatiteRewrite.sln ├── LatiteRewrite.vcxproj ├── LatiteRewrite.vcxproj.filters ├── README.md ├── assets ├── arrow.png ├── arrow_back.png ├── checkmark.png ├── cog.png ├── document.png ├── hudedit.png ├── lang │ ├── ar_AR.json │ ├── cs_CZ.json │ ├── en_US.json │ ├── es_ES.json │ ├── fr_FR.json │ ├── ja_JP.json │ ├── nl_NL.json │ ├── pt_BR.json │ ├── pt_PT.json │ ├── zh_CN.json │ └── zh_TW.json ├── latiteapi.js ├── latitewhite.png ├── logo.png ├── searchicon.png └── x.png ├── deps ├── CMakeLists.txt ├── get_cpm.cmake └── include │ ├── chakra │ ├── ChakraCommon.h │ ├── ChakraCommonWindows.h │ ├── ChakraCore.h │ ├── ChakraCoreWindows.h │ └── ChakraDebug.h │ ├── vhook │ ├── README.md │ ├── vtable_hook.cpp │ └── vtable_hook.h │ └── xorstr.hpp └── src ├── CMakeLists.txt ├── client ├── Latite.cpp ├── Latite.h ├── config │ ├── Config.cpp │ ├── Config.h │ ├── ConfigManager.cpp │ └── ConfigManager.h ├── event │ ├── Event.h │ ├── Eventing.cpp │ ├── Eventing.h │ ├── Events.h │ ├── Listener.h │ └── events │ │ ├── AfterEntityRenderEvent.h │ │ ├── AfterMoveEvent.h │ │ ├── AppSuspendedEvent.h │ │ ├── AttackEvent.h │ │ ├── AveragePingEvent.h │ │ ├── BeforeMoveEvent.h │ │ ├── BobHurtEvent.h │ │ ├── BobMovementEvent.h │ │ ├── CharEvent.h │ │ ├── ChatEvent.h │ │ ├── ChatMessageEvent.h │ │ ├── CinematicCameraEvent.h │ │ ├── ClickEvent.h │ │ ├── ClientTextEvent.h │ │ ├── DrawHUDModulesEvent.h │ │ ├── FocusLostEvent.h │ │ ├── FogColorEvent.h │ │ ├── GammaEvent.h │ │ ├── GetFormattedNameTagEvent.h │ │ ├── GetTimeEvent.h │ │ ├── HideHandEvent.h │ │ ├── KeyUpdateEvent.h │ │ ├── LatiteClientMessageEvent.h │ │ ├── LeaveGameEvent.h │ │ ├── OutlineSelectionEvent.h │ │ ├── OverlayColorEvent.h │ │ ├── PacketReceiveEvent.h │ │ ├── PerspectiveEvent.h │ │ ├── RenderGameEvent.h │ │ ├── RenderGuiItemEvent.h │ │ ├── RenderLayerEvent.h │ │ ├── RenderLevelEvent.h │ │ ├── RenderOverlayEvent.h │ │ ├── RendererCleanupEvent.h │ │ ├── RendererInitEvent.h │ │ ├── SendPacketEvent.h │ │ ├── SensitivityEvent.h │ │ ├── TickEvent.h │ │ ├── UpdateEvent.h │ │ ├── UpdatePlayerCameraEvent.h │ │ └── WeatherEvent.h ├── feature │ ├── Feature.h │ ├── command │ │ ├── Command.cpp │ │ ├── Command.h │ │ ├── CommandManager.cpp │ │ ├── CommandManager.h │ │ ├── commands │ │ │ ├── ConfigCommand.cpp │ │ │ ├── ConfigCommand.h │ │ │ ├── EjectCommand.cpp │ │ │ ├── EjectCommand.h │ │ │ ├── HelpCommand.cpp │ │ │ ├── HelpCommand.h │ │ │ ├── ScriptCommand.cpp │ │ │ ├── ScriptCommand.h │ │ │ ├── SetPrefixCommand.cpp │ │ │ ├── SetPrefixCommand.h │ │ │ ├── SignCommand.cpp │ │ │ ├── SignCommand.h │ │ │ ├── TestCommand.cpp │ │ │ ├── TestCommand.h │ │ │ ├── ToggleCommand.cpp │ │ │ ├── ToggleCommand.h │ │ │ └── WaypointCommand.h │ │ └── script │ │ │ ├── JsCommand.cpp │ │ │ └── JsCommand.h │ ├── module │ │ ├── HUDModule.cpp │ │ ├── HUDModule.h │ │ ├── Module.cpp │ │ ├── Module.h │ │ ├── ModuleManager.cpp │ │ ├── ModuleManager.h │ │ ├── TextModule.cpp │ │ ├── TextModule.h │ │ ├── modules │ │ │ ├── game │ │ │ │ ├── AutoGG.cpp │ │ │ │ ├── AutoGG.h │ │ │ │ ├── BehindYou.cpp │ │ │ │ ├── BehindYou.h │ │ │ │ ├── CinematicCamera.cpp │ │ │ │ ├── CinematicCamera.h │ │ │ │ ├── DynamicLight.cpp │ │ │ │ ├── DynamicLight.h │ │ │ │ ├── EnvironmentChanger.cpp │ │ │ │ ├── EnvironmentChanger.h │ │ │ │ ├── Freelook.cpp │ │ │ │ ├── Freelook.h │ │ │ │ ├── TextHotkey.cpp │ │ │ │ ├── TextHotkey.h │ │ │ │ ├── ThirdPersonNametag.cpp │ │ │ │ ├── ThirdPersonNametag.h │ │ │ │ ├── ToggleSprintSneak.cpp │ │ │ │ ├── ToggleSprintSneak.h │ │ │ │ ├── Waypoints.cpp │ │ │ │ ├── Waypoints.h │ │ │ │ ├── Zoom.cpp │ │ │ │ └── Zoom.h │ │ │ ├── hud │ │ │ │ ├── ArmorHUD.cpp │ │ │ │ ├── ArmorHUD.h │ │ │ │ ├── BowIndicator.cpp │ │ │ │ ├── BowIndicator.h │ │ │ │ ├── BreakIndicator.cpp │ │ │ │ ├── BreakIndicator.h │ │ │ │ ├── CPSCounter.cpp │ │ │ │ ├── CPSCounter.h │ │ │ │ ├── Chat.cpp │ │ │ │ ├── Chat.h │ │ │ │ ├── Clock.cpp │ │ │ │ ├── Clock.h │ │ │ │ ├── ComboCounter.cpp │ │ │ │ ├── ComboCounter.h │ │ │ │ ├── CustomCoordinates.cpp │ │ │ │ ├── CustomCoordinates.h │ │ │ │ ├── FPSCounter.cpp │ │ │ │ ├── FPSCounter.h │ │ │ │ ├── FrameTimeDisplay.cpp │ │ │ │ ├── FrameTimeDisplay.h │ │ │ │ ├── GuiscaleChanger.cpp │ │ │ │ ├── GuiscaleChanger.h │ │ │ │ ├── HealthWarning.cpp │ │ │ │ ├── HealthWarning.h │ │ │ │ ├── ItemCounter.cpp │ │ │ │ ├── ItemCounter.h │ │ │ │ ├── Keystrokes.cpp │ │ │ │ ├── Keystrokes.h │ │ │ │ ├── Minimap.h │ │ │ │ ├── MovableBossbar.cpp │ │ │ │ ├── MovableBossbar.h │ │ │ │ ├── MovableCoordinates.cpp │ │ │ │ ├── MovableCoordinates.h │ │ │ │ ├── MovablePaperdoll.cpp │ │ │ │ ├── MovablePaperdoll.h │ │ │ │ ├── MovableScoreboard.cpp │ │ │ │ ├── MovableScoreboard.h │ │ │ │ ├── PingDisplay.cpp │ │ │ │ ├── PingDisplay.h │ │ │ │ ├── ReachDisplay.cpp │ │ │ │ ├── ReachDisplay.h │ │ │ │ ├── ServerDisplay.cpp │ │ │ │ ├── ServerDisplay.h │ │ │ │ ├── SpeedDisplay.cpp │ │ │ │ ├── SpeedDisplay.h │ │ │ │ ├── TabList.cpp │ │ │ │ └── TabList.h │ │ │ ├── misc │ │ │ │ ├── BlockGame.cpp │ │ │ │ ├── BlockGame.h │ │ │ │ ├── CommandShortcuts.cpp │ │ │ │ ├── CommandShortcuts.h │ │ │ │ ├── DebugInfo.cpp │ │ │ │ ├── DebugInfo.h │ │ │ │ ├── ItemTweaks.cpp │ │ │ │ ├── ItemTweaks.h │ │ │ │ ├── JavaDrop.cpp │ │ │ │ ├── JavaDrop.h │ │ │ │ ├── Nickname.cpp │ │ │ │ ├── Nickname.h │ │ │ │ ├── TestModule.cpp │ │ │ │ └── TestModule.h │ │ │ └── visual │ │ │ │ ├── BlockOutline.cpp │ │ │ │ ├── BlockOutline.h │ │ │ │ ├── ChunkBorders.cpp │ │ │ │ ├── ChunkBorders.h │ │ │ │ ├── Fullbright.cpp │ │ │ │ ├── Fullbright.h │ │ │ │ ├── Hitboxes.cpp │ │ │ │ ├── Hitboxes.h │ │ │ │ ├── HurtColor.cpp │ │ │ │ ├── HurtColor.h │ │ │ │ ├── MotionBlur.cpp │ │ │ │ ├── MotionBlur.h │ │ │ │ ├── NewFile │ │ │ │ ├── NoHurtCam.cpp │ │ │ │ └── NoHurtCam.h │ │ └── script │ │ │ ├── JsHudModule.cpp │ │ │ ├── JsHudModule.h │ │ │ ├── JsModule.cpp │ │ │ ├── JsModule.h │ │ │ ├── JsTextModule.cpp │ │ │ └── JsTextModule.h │ └── setting │ │ ├── Setting.cpp │ │ ├── Setting.h │ │ ├── SettingGroup.h │ │ └── script │ │ └── JsSetting.h ├── input │ ├── Keyboard.cpp │ └── Keyboard.h ├── localization │ ├── LocalizeData.cpp │ ├── LocalizeData.h │ ├── LocalizeString.cpp │ └── LocalizeString.h ├── manager │ ├── Manager.h │ └── StaticManager.h ├── memory │ └── hook │ │ ├── Hook.cpp │ │ ├── Hook.h │ │ ├── Hooks.cpp │ │ ├── Hooks.h │ │ └── hooks │ │ ├── DXHooks.cpp │ │ ├── DXHooks.h │ │ ├── GeneralHooks.cpp │ │ ├── GeneralHooks.h │ │ ├── LevelRendererHooks.cpp │ │ ├── LevelRendererHooks.h │ │ ├── MinecraftGameHooks.cpp │ │ ├── MinecraftGameHooks.h │ │ ├── OptionHooks.cpp │ │ ├── OptionHooks.h │ │ ├── PacketHooks.cpp │ │ ├── PacketHooks.h │ │ ├── PlayerHooks.cpp │ │ ├── PlayerHooks.h │ │ ├── RenderControllerHooks.cpp │ │ ├── RenderControllerHooks.h │ │ ├── ScreenViewHooks.cpp │ │ └── ScreenViewHooks.h ├── misc │ ├── ClientMessageQueue.cpp │ ├── ClientMessageQueue.h │ ├── Notifications.cpp │ ├── Notifications.h │ ├── Timings.cpp │ └── Timings.h ├── render │ ├── Renderer.cpp │ ├── Renderer.h │ └── asset │ │ ├── Asset.cpp │ │ ├── Asset.h │ │ ├── Assets.cpp │ │ └── Assets.h ├── resource │ ├── InitResources.h │ └── Resource.h ├── screen │ ├── Screen.cpp │ ├── Screen.h │ ├── ScreenManager.cpp │ ├── ScreenManager.h │ ├── TextBox.cpp │ ├── TextBox.h │ ├── screens │ │ ├── ClickGUI.cpp │ │ ├── ClickGUI.h │ │ ├── HUDEditor.cpp │ │ └── HUDEditor.h │ └── script │ │ ├── JsScreen.cpp │ │ └── JsScreen.h └── script │ ├── JsEvented.cpp │ ├── JsEvented.h │ ├── JsLibrary.cpp │ ├── JsLibrary.h │ ├── JsPlugin.cpp │ ├── JsPlugin.h │ ├── JsScript.cpp │ ├── JsScript.h │ ├── PluginManager.cpp │ ├── PluginManager.h │ ├── ScriptingObject.cpp │ ├── ScriptingObject.h │ ├── class │ ├── JsClass.h │ ├── JsWrapperClass.h │ └── classes │ │ ├── JsColor.h │ │ ├── JsCommandClass.cpp │ │ ├── JsCommandClass.h │ │ ├── JsHudModuleClass.cpp │ │ ├── JsHudModuleClass.h │ │ ├── JsModuleClass.cpp │ │ ├── JsModuleClass.h │ │ ├── JsNativeModule.h │ │ ├── JsRect.h │ │ ├── JsScreenClass.h │ │ ├── JsSettingClass.cpp │ │ ├── JsSettingClass.h │ │ ├── JsTextModuleClass.cpp │ │ ├── JsTextModuleClass.h │ │ ├── JsVec2.h │ │ ├── JsVec3.h │ │ ├── JsWebSocket.cpp │ │ ├── JsWebSocket.h │ │ └── game │ │ ├── JsBlock.h │ │ ├── JsEntity.cpp │ │ ├── JsEntity.h │ │ ├── JsEntityClass.cpp │ │ ├── JsEntityClass.h │ │ ├── JsInventory.h │ │ ├── JsItem.h │ │ ├── JsItemStack.h │ │ ├── JsLocalPlayerClass.cpp │ │ ├── JsLocalPlayerClass.h │ │ ├── JsPlayerClass.cpp │ │ ├── JsPlayerClass.h │ │ ├── JsTexture.cpp │ │ ├── JsTexture.h │ │ └── JsTextureClass.h │ ├── globals │ ├── ClientScriptingObject.cpp │ ├── ClientScriptingObject.h │ ├── D2DScriptingObject.cpp │ ├── D2DScriptingObject.h │ ├── GameScriptingObject.cpp │ ├── GameScriptingObject.h │ ├── Graphics3DScriptingObject.cpp │ ├── Graphics3DScriptingObject.h │ ├── OSScriptingObject.cpp │ ├── OSScriptingObject.h │ ├── OptionsScriptingObject.cpp │ └── OptionsScriptingObject.h │ └── libraries │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Filesystem.cpp │ ├── Filesystem.h │ ├── Network.cpp │ └── Network.h ├── mc ├── Addresses.h ├── Util.h ├── Version.h ├── common │ ├── client │ │ ├── game │ │ │ ├── ClientHMDState.h │ │ │ ├── ClientInstance.cpp │ │ │ ├── ClientInstance.h │ │ │ ├── FontRepository.h │ │ │ ├── GameCore.cpp │ │ │ ├── GameCore.h │ │ │ ├── MinecraftGame.cpp │ │ │ ├── MinecraftGame.h │ │ │ ├── MouseInputPacket.h │ │ │ ├── Option.h │ │ │ ├── Options.cpp │ │ │ └── Options.h │ │ ├── gui │ │ │ ├── Font.h │ │ │ ├── GuiData.h │ │ │ ├── ScreenView.h │ │ │ ├── controls │ │ │ │ ├── UIControl.cpp │ │ │ │ ├── UIControl.h │ │ │ │ └── VisualTree.h │ │ │ └── screens │ │ │ │ ├── ContainerScreenController.cpp │ │ │ │ ├── ContainerScreenController.h │ │ │ │ └── ScreenController.h │ │ ├── input │ │ │ ├── ClientInputHandler.h │ │ │ ├── RemappingLayout.cpp │ │ │ └── RemappingLayout.h │ │ ├── player │ │ │ ├── LocalPlayer.cpp │ │ │ └── LocalPlayer.h │ │ ├── renderer │ │ │ ├── GameRenderer.h │ │ │ ├── HudPlayerRenderer.h │ │ │ ├── ItemRenderer.cpp │ │ │ ├── ItemRenderer.h │ │ │ ├── MaterialPtr.cpp │ │ │ ├── MaterialPtr.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixStack.h │ │ │ ├── MeshUtils.cpp │ │ │ ├── MeshUtils.h │ │ │ ├── Tessellator.cpp │ │ │ ├── Tessellator.h │ │ │ ├── TexturePtr.h │ │ │ ├── game │ │ │ │ ├── BaseActorRenderContext.cpp │ │ │ │ ├── BaseActorRenderContext.h │ │ │ │ ├── CameraComponent.h │ │ │ │ ├── LevelRenderer.h │ │ │ │ ├── LevelRendererPlayer.cpp │ │ │ │ └── LevelRendererPlayer.h │ │ │ └── screen │ │ │ │ ├── MinecraftUIRenderContext.h │ │ │ │ └── ScreenContext.h │ │ ├── util │ │ │ ├── JpegCommentWriter.cpp │ │ │ └── JpegCommentWriter.h │ │ └── win │ │ │ └── winrt │ │ │ └── HidControllerWinRT.h │ ├── entity │ │ ├── EntityContext.h │ │ └── component │ │ │ ├── ActorDataFlagComponent.h │ │ │ ├── ActorEquipmentComponent.h │ │ │ ├── ActorTypeComponent.h │ │ │ ├── AttributesComponent.h │ │ │ ├── MoveInputComponent.h │ │ │ ├── MoveInputState.h │ │ │ └── RuntimeIDComponent.h │ ├── nbt │ │ ├── CompoundTag.h │ │ └── Tag.h │ ├── network │ │ ├── MinecraftPackets.h │ │ ├── NetworkSystem.h │ │ ├── Packet.h │ │ ├── PacketSender.h │ │ ├── RakNetConnector.cpp │ │ ├── RakNetConnector.h │ │ ├── RakPeer.h │ │ ├── RemoteConnectorComposite.h │ │ └── packet │ │ │ ├── ActorEventPacket.h │ │ │ ├── CommandRequestPacket.cpp │ │ │ ├── CommandRequestPacket.h │ │ │ ├── ModalFormRequestPacket.h │ │ │ ├── SetScorePacket.cpp │ │ │ ├── SetScorePacket.h │ │ │ ├── SetTitlePacket.h │ │ │ ├── TextPacket.cpp │ │ │ └── TextPacket.h │ ├── server │ │ └── ServerInstance.h │ ├── util │ │ ├── BasicDataOutput.h │ │ ├── BasicPrintStream.h │ │ ├── MolangVariable.h │ │ └── MolangVariableMap.h │ └── world │ │ ├── Attribute.h │ │ ├── Item.h │ │ ├── ItemStack.h │ │ ├── ItemStackBase.cpp │ │ ├── ItemStackBase.h │ │ ├── Minecraft.cpp │ │ ├── Minecraft.h │ │ ├── Timer.h │ │ ├── Weather.h │ │ ├── actor │ │ ├── Actor.cpp │ │ ├── Actor.h │ │ ├── Mob.h │ │ └── player │ │ │ ├── GameMode.h │ │ │ ├── Inventory.h │ │ │ ├── Player.cpp │ │ │ ├── Player.h │ │ │ └── PlayerInventory.h │ │ └── level │ │ ├── BlockSource.h │ │ ├── Dimension.h │ │ ├── HitResult.h │ │ ├── Level.cpp │ │ ├── Level.h │ │ ├── LevelData.cpp │ │ ├── LevelData.h │ │ └── block │ │ ├── Block.h │ │ └── BlockLegacy.h └── deps │ ├── application │ ├── AppPlatform.cpp │ └── AppPlatform.h │ ├── core │ └── StringUtils.h │ └── core_graphics │ └── ImageBuffer.h ├── pch.cpp ├── pch.h ├── resource.h └── util ├── ChakraUtil.cpp ├── ChakraUtil.h ├── Crypto.h ├── DrawContext.cpp ├── DrawContext.h ├── DrawUtil3D.cpp ├── DrawUtil3D.h ├── DxUtil.cpp ├── DxUtil.h ├── ErrorHandler.h ├── ExceptionHandler.cpp ├── ExceptionHandler.h ├── LMath.h ├── Logger.cpp ├── Logger.h ├── Util.cpp ├── Util.h ├── WorldToScreen.cpp ├── WorldToScreen.h ├── XorString.h ├── memory.cpp ├── memory.h ├── signature.cpp └── signature.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/debug-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/.github/workflows/debug-build.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/.github/workflows/nightly-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CppProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/CppProperties.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/LICENSE -------------------------------------------------------------------------------- /LatiteRewrite.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/LatiteRewrite.rc -------------------------------------------------------------------------------- /LatiteRewrite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/LatiteRewrite.sln -------------------------------------------------------------------------------- /LatiteRewrite.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/LatiteRewrite.vcxproj -------------------------------------------------------------------------------- /LatiteRewrite.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/LatiteRewrite.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/README.md -------------------------------------------------------------------------------- /assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/arrow.png -------------------------------------------------------------------------------- /assets/arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/arrow_back.png -------------------------------------------------------------------------------- /assets/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/checkmark.png -------------------------------------------------------------------------------- /assets/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/cog.png -------------------------------------------------------------------------------- /assets/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/document.png -------------------------------------------------------------------------------- /assets/hudedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/hudedit.png -------------------------------------------------------------------------------- /assets/lang/ar_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/ar_AR.json -------------------------------------------------------------------------------- /assets/lang/cs_CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/cs_CZ.json -------------------------------------------------------------------------------- /assets/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/en_US.json -------------------------------------------------------------------------------- /assets/lang/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/es_ES.json -------------------------------------------------------------------------------- /assets/lang/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/fr_FR.json -------------------------------------------------------------------------------- /assets/lang/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/ja_JP.json -------------------------------------------------------------------------------- /assets/lang/nl_NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/nl_NL.json -------------------------------------------------------------------------------- /assets/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/pt_BR.json -------------------------------------------------------------------------------- /assets/lang/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/pt_PT.json -------------------------------------------------------------------------------- /assets/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/zh_CN.json -------------------------------------------------------------------------------- /assets/lang/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/lang/zh_TW.json -------------------------------------------------------------------------------- /assets/latiteapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/latiteapi.js -------------------------------------------------------------------------------- /assets/latitewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/latitewhite.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/searchicon.png -------------------------------------------------------------------------------- /assets/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/assets/x.png -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/get_cpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/get_cpm.cmake -------------------------------------------------------------------------------- /deps/include/chakra/ChakraCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/chakra/ChakraCommon.h -------------------------------------------------------------------------------- /deps/include/chakra/ChakraCommonWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/chakra/ChakraCommonWindows.h -------------------------------------------------------------------------------- /deps/include/chakra/ChakraCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/chakra/ChakraCore.h -------------------------------------------------------------------------------- /deps/include/chakra/ChakraCoreWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/chakra/ChakraCoreWindows.h -------------------------------------------------------------------------------- /deps/include/chakra/ChakraDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/chakra/ChakraDebug.h -------------------------------------------------------------------------------- /deps/include/vhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/vhook/README.md -------------------------------------------------------------------------------- /deps/include/vhook/vtable_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/vhook/vtable_hook.cpp -------------------------------------------------------------------------------- /deps/include/vhook/vtable_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/vhook/vtable_hook.h -------------------------------------------------------------------------------- /deps/include/xorstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/deps/include/xorstr.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_precompile_headers(Latite PRIVATE pch.h) -------------------------------------------------------------------------------- /src/client/Latite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/Latite.cpp -------------------------------------------------------------------------------- /src/client/Latite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/Latite.h -------------------------------------------------------------------------------- /src/client/config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/config/Config.cpp -------------------------------------------------------------------------------- /src/client/config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/config/Config.h -------------------------------------------------------------------------------- /src/client/config/ConfigManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/config/ConfigManager.cpp -------------------------------------------------------------------------------- /src/client/config/ConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/config/ConfigManager.h -------------------------------------------------------------------------------- /src/client/event/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/Event.h -------------------------------------------------------------------------------- /src/client/event/Eventing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/Eventing.cpp -------------------------------------------------------------------------------- /src/client/event/Eventing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/Eventing.h -------------------------------------------------------------------------------- /src/client/event/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/Events.h -------------------------------------------------------------------------------- /src/client/event/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/Listener.h -------------------------------------------------------------------------------- /src/client/event/events/AfterEntityRenderEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/AfterEntityRenderEvent.h -------------------------------------------------------------------------------- /src/client/event/events/AfterMoveEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/AfterMoveEvent.h -------------------------------------------------------------------------------- /src/client/event/events/AppSuspendedEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/AppSuspendedEvent.h -------------------------------------------------------------------------------- /src/client/event/events/AttackEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/AttackEvent.h -------------------------------------------------------------------------------- /src/client/event/events/AveragePingEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/AveragePingEvent.h -------------------------------------------------------------------------------- /src/client/event/events/BeforeMoveEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/BeforeMoveEvent.h -------------------------------------------------------------------------------- /src/client/event/events/BobHurtEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/BobHurtEvent.h -------------------------------------------------------------------------------- /src/client/event/events/BobMovementEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/BobMovementEvent.h -------------------------------------------------------------------------------- /src/client/event/events/CharEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/CharEvent.h -------------------------------------------------------------------------------- /src/client/event/events/ChatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/ChatEvent.h -------------------------------------------------------------------------------- /src/client/event/events/ChatMessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/ChatMessageEvent.h -------------------------------------------------------------------------------- /src/client/event/events/CinematicCameraEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/CinematicCameraEvent.h -------------------------------------------------------------------------------- /src/client/event/events/ClickEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/ClickEvent.h -------------------------------------------------------------------------------- /src/client/event/events/ClientTextEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/ClientTextEvent.h -------------------------------------------------------------------------------- /src/client/event/events/DrawHUDModulesEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/DrawHUDModulesEvent.h -------------------------------------------------------------------------------- /src/client/event/events/FocusLostEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/FocusLostEvent.h -------------------------------------------------------------------------------- /src/client/event/events/FogColorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/FogColorEvent.h -------------------------------------------------------------------------------- /src/client/event/events/GammaEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/GammaEvent.h -------------------------------------------------------------------------------- /src/client/event/events/GetFormattedNameTagEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/GetFormattedNameTagEvent.h -------------------------------------------------------------------------------- /src/client/event/events/GetTimeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/GetTimeEvent.h -------------------------------------------------------------------------------- /src/client/event/events/HideHandEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/HideHandEvent.h -------------------------------------------------------------------------------- /src/client/event/events/KeyUpdateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/KeyUpdateEvent.h -------------------------------------------------------------------------------- /src/client/event/events/LatiteClientMessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/LatiteClientMessageEvent.h -------------------------------------------------------------------------------- /src/client/event/events/LeaveGameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/LeaveGameEvent.h -------------------------------------------------------------------------------- /src/client/event/events/OutlineSelectionEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/OutlineSelectionEvent.h -------------------------------------------------------------------------------- /src/client/event/events/OverlayColorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/OverlayColorEvent.h -------------------------------------------------------------------------------- /src/client/event/events/PacketReceiveEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/PacketReceiveEvent.h -------------------------------------------------------------------------------- /src/client/event/events/PerspectiveEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/PerspectiveEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RenderGameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RenderGameEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RenderGuiItemEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RenderGuiItemEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RenderLayerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RenderLayerEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RenderLevelEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RenderLevelEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RenderOverlayEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RenderOverlayEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RendererCleanupEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RendererCleanupEvent.h -------------------------------------------------------------------------------- /src/client/event/events/RendererInitEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/RendererInitEvent.h -------------------------------------------------------------------------------- /src/client/event/events/SendPacketEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/SendPacketEvent.h -------------------------------------------------------------------------------- /src/client/event/events/SensitivityEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/SensitivityEvent.h -------------------------------------------------------------------------------- /src/client/event/events/TickEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/TickEvent.h -------------------------------------------------------------------------------- /src/client/event/events/UpdateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/UpdateEvent.h -------------------------------------------------------------------------------- /src/client/event/events/UpdatePlayerCameraEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/UpdatePlayerCameraEvent.h -------------------------------------------------------------------------------- /src/client/event/events/WeatherEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/event/events/WeatherEvent.h -------------------------------------------------------------------------------- /src/client/feature/Feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/Feature.h -------------------------------------------------------------------------------- /src/client/feature/command/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/Command.cpp -------------------------------------------------------------------------------- /src/client/feature/command/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/Command.h -------------------------------------------------------------------------------- /src/client/feature/command/CommandManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/CommandManager.cpp -------------------------------------------------------------------------------- /src/client/feature/command/CommandManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/CommandManager.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/ConfigCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/ConfigCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/ConfigCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/ConfigCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/EjectCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/EjectCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/EjectCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/EjectCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/HelpCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/HelpCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/HelpCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/HelpCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/ScriptCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/ScriptCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/ScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/ScriptCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/SetPrefixCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/SetPrefixCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/SetPrefixCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/SetPrefixCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/SignCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/SignCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/SignCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/SignCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/TestCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/TestCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/TestCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/TestCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/ToggleCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/ToggleCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/commands/ToggleCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/commands/ToggleCommand.h -------------------------------------------------------------------------------- /src/client/feature/command/commands/WaypointCommand.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/client/feature/command/script/JsCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/script/JsCommand.cpp -------------------------------------------------------------------------------- /src/client/feature/command/script/JsCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/command/script/JsCommand.h -------------------------------------------------------------------------------- /src/client/feature/module/HUDModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/HUDModule.cpp -------------------------------------------------------------------------------- /src/client/feature/module/HUDModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/HUDModule.h -------------------------------------------------------------------------------- /src/client/feature/module/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/Module.cpp -------------------------------------------------------------------------------- /src/client/feature/module/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/Module.h -------------------------------------------------------------------------------- /src/client/feature/module/ModuleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/ModuleManager.cpp -------------------------------------------------------------------------------- /src/client/feature/module/ModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/ModuleManager.h -------------------------------------------------------------------------------- /src/client/feature/module/TextModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/TextModule.cpp -------------------------------------------------------------------------------- /src/client/feature/module/TextModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/TextModule.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/AutoGG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/AutoGG.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/AutoGG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/AutoGG.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/BehindYou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/BehindYou.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/BehindYou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/BehindYou.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/CinematicCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/CinematicCamera.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/CinematicCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/CinematicCamera.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/DynamicLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/DynamicLight.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/DynamicLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/DynamicLight.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/EnvironmentChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/EnvironmentChanger.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/EnvironmentChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/EnvironmentChanger.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/Freelook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/Freelook.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/Freelook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/Freelook.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/TextHotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/TextHotkey.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/TextHotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/TextHotkey.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/ThirdPersonNametag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/ThirdPersonNametag.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/ThirdPersonNametag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/ThirdPersonNametag.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/ToggleSprintSneak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/ToggleSprintSneak.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/ToggleSprintSneak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/ToggleSprintSneak.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/Waypoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/Waypoints.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/Waypoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/Waypoints.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/Zoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/Zoom.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/game/Zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/game/Zoom.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ArmorHUD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ArmorHUD.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ArmorHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ArmorHUD.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/BowIndicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/BowIndicator.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/BowIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/BowIndicator.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/BreakIndicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/BreakIndicator.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/BreakIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/BreakIndicator.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/CPSCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/CPSCounter.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/CPSCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/CPSCounter.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Chat.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Chat.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Clock.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Clock.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ComboCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ComboCounter.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ComboCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ComboCounter.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/CustomCoordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/CustomCoordinates.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/CustomCoordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/CustomCoordinates.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/FPSCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/FPSCounter.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/FPSCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/FPSCounter.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/FrameTimeDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/FrameTimeDisplay.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/FrameTimeDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/FrameTimeDisplay.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/GuiscaleChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/GuiscaleChanger.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/GuiscaleChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/GuiscaleChanger.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/HealthWarning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/HealthWarning.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/HealthWarning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/HealthWarning.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ItemCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ItemCounter.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ItemCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ItemCounter.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Keystrokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Keystrokes.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Keystrokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Keystrokes.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/Minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/Minimap.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovableBossbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovableBossbar.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovableBossbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovableBossbar.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovableCoordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovableCoordinates.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovableCoordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovableCoordinates.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovablePaperdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovablePaperdoll.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovablePaperdoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovablePaperdoll.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovableScoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovableScoreboard.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/MovableScoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/MovableScoreboard.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/PingDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/PingDisplay.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/PingDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/PingDisplay.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ReachDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ReachDisplay.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ReachDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ReachDisplay.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ServerDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ServerDisplay.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/ServerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/ServerDisplay.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/SpeedDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/SpeedDisplay.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/SpeedDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/SpeedDisplay.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/TabList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/TabList.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/hud/TabList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/hud/TabList.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/BlockGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/BlockGame.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/BlockGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/BlockGame.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/CommandShortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/CommandShortcuts.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/CommandShortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/CommandShortcuts.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/DebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/DebugInfo.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/DebugInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/DebugInfo.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/ItemTweaks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/ItemTweaks.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/ItemTweaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/ItemTweaks.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/JavaDrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/JavaDrop.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/JavaDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/JavaDrop.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/Nickname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/Nickname.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/Nickname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/Nickname.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/TestModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/TestModule.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/misc/TestModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/misc/TestModule.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/BlockOutline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/BlockOutline.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/BlockOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/BlockOutline.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/ChunkBorders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/ChunkBorders.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/ChunkBorders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/ChunkBorders.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/Fullbright.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/Fullbright.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/Fullbright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/Fullbright.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/Hitboxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/Hitboxes.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/Hitboxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/Hitboxes.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/HurtColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/HurtColor.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/HurtColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/HurtColor.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/MotionBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/MotionBlur.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/MotionBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/MotionBlur.h -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/NewFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/NoHurtCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/NoHurtCam.cpp -------------------------------------------------------------------------------- /src/client/feature/module/modules/visual/NoHurtCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/modules/visual/NoHurtCam.h -------------------------------------------------------------------------------- /src/client/feature/module/script/JsHudModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/script/JsHudModule.cpp -------------------------------------------------------------------------------- /src/client/feature/module/script/JsHudModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/script/JsHudModule.h -------------------------------------------------------------------------------- /src/client/feature/module/script/JsModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/script/JsModule.cpp -------------------------------------------------------------------------------- /src/client/feature/module/script/JsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/script/JsModule.h -------------------------------------------------------------------------------- /src/client/feature/module/script/JsTextModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/script/JsTextModule.cpp -------------------------------------------------------------------------------- /src/client/feature/module/script/JsTextModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/module/script/JsTextModule.h -------------------------------------------------------------------------------- /src/client/feature/setting/Setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/setting/Setting.cpp -------------------------------------------------------------------------------- /src/client/feature/setting/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/setting/Setting.h -------------------------------------------------------------------------------- /src/client/feature/setting/SettingGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/setting/SettingGroup.h -------------------------------------------------------------------------------- /src/client/feature/setting/script/JsSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/feature/setting/script/JsSetting.h -------------------------------------------------------------------------------- /src/client/input/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/input/Keyboard.cpp -------------------------------------------------------------------------------- /src/client/input/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/input/Keyboard.h -------------------------------------------------------------------------------- /src/client/localization/LocalizeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/localization/LocalizeData.cpp -------------------------------------------------------------------------------- /src/client/localization/LocalizeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/localization/LocalizeData.h -------------------------------------------------------------------------------- /src/client/localization/LocalizeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/localization/LocalizeString.cpp -------------------------------------------------------------------------------- /src/client/localization/LocalizeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/localization/LocalizeString.h -------------------------------------------------------------------------------- /src/client/manager/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/manager/Manager.h -------------------------------------------------------------------------------- /src/client/manager/StaticManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/manager/StaticManager.h -------------------------------------------------------------------------------- /src/client/memory/hook/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/Hook.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/Hook.h -------------------------------------------------------------------------------- /src/client/memory/hook/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/Hooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/Hooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/DXHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/DXHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/DXHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/DXHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/GeneralHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/GeneralHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/GeneralHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/GeneralHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/LevelRendererHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/LevelRendererHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/LevelRendererHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/LevelRendererHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/MinecraftGameHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/MinecraftGameHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/MinecraftGameHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/MinecraftGameHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/OptionHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/OptionHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/OptionHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/OptionHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/PacketHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/PacketHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/PacketHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/PacketHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/PlayerHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/PlayerHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/PlayerHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/PlayerHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/RenderControllerHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/RenderControllerHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/RenderControllerHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/RenderControllerHooks.h -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/ScreenViewHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/ScreenViewHooks.cpp -------------------------------------------------------------------------------- /src/client/memory/hook/hooks/ScreenViewHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/memory/hook/hooks/ScreenViewHooks.h -------------------------------------------------------------------------------- /src/client/misc/ClientMessageQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/misc/ClientMessageQueue.cpp -------------------------------------------------------------------------------- /src/client/misc/ClientMessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/misc/ClientMessageQueue.h -------------------------------------------------------------------------------- /src/client/misc/Notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/misc/Notifications.cpp -------------------------------------------------------------------------------- /src/client/misc/Notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/misc/Notifications.h -------------------------------------------------------------------------------- /src/client/misc/Timings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/misc/Timings.cpp -------------------------------------------------------------------------------- /src/client/misc/Timings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/misc/Timings.h -------------------------------------------------------------------------------- /src/client/render/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/render/Renderer.cpp -------------------------------------------------------------------------------- /src/client/render/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/render/Renderer.h -------------------------------------------------------------------------------- /src/client/render/asset/Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/render/asset/Asset.cpp -------------------------------------------------------------------------------- /src/client/render/asset/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/render/asset/Asset.h -------------------------------------------------------------------------------- /src/client/render/asset/Assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/render/asset/Assets.cpp -------------------------------------------------------------------------------- /src/client/render/asset/Assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/render/asset/Assets.h -------------------------------------------------------------------------------- /src/client/resource/InitResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/resource/InitResources.h -------------------------------------------------------------------------------- /src/client/resource/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/resource/Resource.h -------------------------------------------------------------------------------- /src/client/screen/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/Screen.cpp -------------------------------------------------------------------------------- /src/client/screen/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/Screen.h -------------------------------------------------------------------------------- /src/client/screen/ScreenManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/ScreenManager.cpp -------------------------------------------------------------------------------- /src/client/screen/ScreenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/ScreenManager.h -------------------------------------------------------------------------------- /src/client/screen/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/TextBox.cpp -------------------------------------------------------------------------------- /src/client/screen/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/TextBox.h -------------------------------------------------------------------------------- /src/client/screen/screens/ClickGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/screens/ClickGUI.cpp -------------------------------------------------------------------------------- /src/client/screen/screens/ClickGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/screens/ClickGUI.h -------------------------------------------------------------------------------- /src/client/screen/screens/HUDEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/screens/HUDEditor.cpp -------------------------------------------------------------------------------- /src/client/screen/screens/HUDEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/screens/HUDEditor.h -------------------------------------------------------------------------------- /src/client/screen/script/JsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/script/JsScreen.cpp -------------------------------------------------------------------------------- /src/client/screen/script/JsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/screen/script/JsScreen.h -------------------------------------------------------------------------------- /src/client/script/JsEvented.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsEvented.cpp -------------------------------------------------------------------------------- /src/client/script/JsEvented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsEvented.h -------------------------------------------------------------------------------- /src/client/script/JsLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsLibrary.cpp -------------------------------------------------------------------------------- /src/client/script/JsLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsLibrary.h -------------------------------------------------------------------------------- /src/client/script/JsPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsPlugin.cpp -------------------------------------------------------------------------------- /src/client/script/JsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsPlugin.h -------------------------------------------------------------------------------- /src/client/script/JsScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsScript.cpp -------------------------------------------------------------------------------- /src/client/script/JsScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/JsScript.h -------------------------------------------------------------------------------- /src/client/script/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/PluginManager.cpp -------------------------------------------------------------------------------- /src/client/script/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/PluginManager.h -------------------------------------------------------------------------------- /src/client/script/ScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/ScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/ScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/ScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/class/JsClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/JsClass.h -------------------------------------------------------------------------------- /src/client/script/class/JsWrapperClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/JsWrapperClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsColor.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsCommandClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsCommandClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/JsCommandClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsCommandClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsHudModuleClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsHudModuleClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/JsHudModuleClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsHudModuleClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsModuleClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsModuleClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/JsModuleClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsModuleClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsNativeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsNativeModule.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsRect.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsScreenClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsScreenClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsSettingClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsSettingClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/JsSettingClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsSettingClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsTextModuleClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsTextModuleClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/JsTextModuleClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsTextModuleClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsVec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsVec2.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsVec3.h -------------------------------------------------------------------------------- /src/client/script/class/classes/JsWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsWebSocket.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/JsWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/JsWebSocket.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsBlock.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsEntity.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsEntity.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsEntityClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsEntityClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsEntityClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsEntityClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsInventory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsItem.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsItemStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsItemStack.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsLocalPlayerClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsLocalPlayerClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsLocalPlayerClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsLocalPlayerClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsPlayerClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsPlayerClass.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsPlayerClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsPlayerClass.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsTexture.cpp -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsTexture.h -------------------------------------------------------------------------------- /src/client/script/class/classes/game/JsTextureClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/class/classes/game/JsTextureClass.h -------------------------------------------------------------------------------- /src/client/script/globals/ClientScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/ClientScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/globals/ClientScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/ClientScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/globals/D2DScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/D2DScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/globals/D2DScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/D2DScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/globals/GameScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/GameScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/globals/GameScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/GameScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/globals/Graphics3DScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/Graphics3DScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/globals/Graphics3DScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/Graphics3DScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/globals/OSScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/OSScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/globals/OSScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/OSScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/globals/OptionsScriptingObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/OptionsScriptingObject.cpp -------------------------------------------------------------------------------- /src/client/script/globals/OptionsScriptingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/globals/OptionsScriptingObject.h -------------------------------------------------------------------------------- /src/client/script/libraries/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/libraries/Clipboard.cpp -------------------------------------------------------------------------------- /src/client/script/libraries/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/libraries/Clipboard.h -------------------------------------------------------------------------------- /src/client/script/libraries/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/libraries/Filesystem.cpp -------------------------------------------------------------------------------- /src/client/script/libraries/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/libraries/Filesystem.h -------------------------------------------------------------------------------- /src/client/script/libraries/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/libraries/Network.cpp -------------------------------------------------------------------------------- /src/client/script/libraries/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/client/script/libraries/Network.h -------------------------------------------------------------------------------- /src/mc/Addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/Addresses.h -------------------------------------------------------------------------------- /src/mc/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/Util.h -------------------------------------------------------------------------------- /src/mc/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/Version.h -------------------------------------------------------------------------------- /src/mc/common/client/game/ClientHMDState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/ClientHMDState.h -------------------------------------------------------------------------------- /src/mc/common/client/game/ClientInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/ClientInstance.cpp -------------------------------------------------------------------------------- /src/mc/common/client/game/ClientInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/ClientInstance.h -------------------------------------------------------------------------------- /src/mc/common/client/game/FontRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/FontRepository.h -------------------------------------------------------------------------------- /src/mc/common/client/game/GameCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/GameCore.cpp -------------------------------------------------------------------------------- /src/mc/common/client/game/GameCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/GameCore.h -------------------------------------------------------------------------------- /src/mc/common/client/game/MinecraftGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/MinecraftGame.cpp -------------------------------------------------------------------------------- /src/mc/common/client/game/MinecraftGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/MinecraftGame.h -------------------------------------------------------------------------------- /src/mc/common/client/game/MouseInputPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/MouseInputPacket.h -------------------------------------------------------------------------------- /src/mc/common/client/game/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/Option.h -------------------------------------------------------------------------------- /src/mc/common/client/game/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/Options.cpp -------------------------------------------------------------------------------- /src/mc/common/client/game/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/game/Options.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/Font.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/GuiData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/GuiData.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/ScreenView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/ScreenView.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/controls/UIControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/controls/UIControl.cpp -------------------------------------------------------------------------------- /src/mc/common/client/gui/controls/UIControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/controls/UIControl.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/controls/VisualTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/controls/VisualTree.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/screens/ContainerScreenController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/screens/ContainerScreenController.cpp -------------------------------------------------------------------------------- /src/mc/common/client/gui/screens/ContainerScreenController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/gui/screens/ContainerScreenController.h -------------------------------------------------------------------------------- /src/mc/common/client/gui/screens/ScreenController.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | namespace SDK { 3 | class ScreenController { 4 | public: 5 | 6 | }; 7 | } -------------------------------------------------------------------------------- /src/mc/common/client/input/ClientInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/input/ClientInputHandler.h -------------------------------------------------------------------------------- /src/mc/common/client/input/RemappingLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/input/RemappingLayout.cpp -------------------------------------------------------------------------------- /src/mc/common/client/input/RemappingLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/input/RemappingLayout.h -------------------------------------------------------------------------------- /src/mc/common/client/player/LocalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/player/LocalPlayer.cpp -------------------------------------------------------------------------------- /src/mc/common/client/player/LocalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/player/LocalPlayer.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/GameRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/GameRenderer.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/HudPlayerRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/HudPlayerRenderer.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/ItemRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/ItemRenderer.cpp -------------------------------------------------------------------------------- /src/mc/common/client/renderer/ItemRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/ItemRenderer.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/MaterialPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/MaterialPtr.cpp -------------------------------------------------------------------------------- /src/mc/common/client/renderer/MaterialPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/MaterialPtr.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/Matrix.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/MatrixStack.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/mc/common/client/renderer/MeshUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/MeshUtils.cpp -------------------------------------------------------------------------------- /src/mc/common/client/renderer/MeshUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/MeshUtils.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/Tessellator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/Tessellator.cpp -------------------------------------------------------------------------------- /src/mc/common/client/renderer/Tessellator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/Tessellator.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/TexturePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/TexturePtr.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/game/BaseActorRenderContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/game/BaseActorRenderContext.cpp -------------------------------------------------------------------------------- /src/mc/common/client/renderer/game/BaseActorRenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/game/BaseActorRenderContext.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/game/CameraComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/game/CameraComponent.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/game/LevelRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/game/LevelRenderer.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/game/LevelRendererPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/game/LevelRendererPlayer.cpp -------------------------------------------------------------------------------- /src/mc/common/client/renderer/game/LevelRendererPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/game/LevelRendererPlayer.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/screen/MinecraftUIRenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/screen/MinecraftUIRenderContext.h -------------------------------------------------------------------------------- /src/mc/common/client/renderer/screen/ScreenContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/renderer/screen/ScreenContext.h -------------------------------------------------------------------------------- /src/mc/common/client/util/JpegCommentWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/util/JpegCommentWriter.cpp -------------------------------------------------------------------------------- /src/mc/common/client/util/JpegCommentWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/client/util/JpegCommentWriter.h -------------------------------------------------------------------------------- /src/mc/common/client/win/winrt/HidControllerWinRT.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace SDK { 4 | class HidControllerWinRT { 5 | }; 6 | } -------------------------------------------------------------------------------- /src/mc/common/entity/EntityContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/EntityContext.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/ActorDataFlagComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/ActorDataFlagComponent.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/ActorEquipmentComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/ActorEquipmentComponent.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/ActorTypeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/ActorTypeComponent.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/AttributesComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/AttributesComponent.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/MoveInputComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/MoveInputComponent.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/MoveInputState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/MoveInputState.h -------------------------------------------------------------------------------- /src/mc/common/entity/component/RuntimeIDComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/entity/component/RuntimeIDComponent.h -------------------------------------------------------------------------------- /src/mc/common/nbt/CompoundTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/nbt/CompoundTag.h -------------------------------------------------------------------------------- /src/mc/common/nbt/Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/nbt/Tag.h -------------------------------------------------------------------------------- /src/mc/common/network/MinecraftPackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/MinecraftPackets.h -------------------------------------------------------------------------------- /src/mc/common/network/NetworkSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/NetworkSystem.h -------------------------------------------------------------------------------- /src/mc/common/network/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/Packet.h -------------------------------------------------------------------------------- /src/mc/common/network/PacketSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/PacketSender.h -------------------------------------------------------------------------------- /src/mc/common/network/RakNetConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/RakNetConnector.cpp -------------------------------------------------------------------------------- /src/mc/common/network/RakNetConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/RakNetConnector.h -------------------------------------------------------------------------------- /src/mc/common/network/RakPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/RakPeer.h -------------------------------------------------------------------------------- /src/mc/common/network/RemoteConnectorComposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/RemoteConnectorComposite.h -------------------------------------------------------------------------------- /src/mc/common/network/packet/ActorEventPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/ActorEventPacket.h -------------------------------------------------------------------------------- /src/mc/common/network/packet/CommandRequestPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/CommandRequestPacket.cpp -------------------------------------------------------------------------------- /src/mc/common/network/packet/CommandRequestPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/CommandRequestPacket.h -------------------------------------------------------------------------------- /src/mc/common/network/packet/ModalFormRequestPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/ModalFormRequestPacket.h -------------------------------------------------------------------------------- /src/mc/common/network/packet/SetScorePacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/SetScorePacket.cpp -------------------------------------------------------------------------------- /src/mc/common/network/packet/SetScorePacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/SetScorePacket.h -------------------------------------------------------------------------------- /src/mc/common/network/packet/SetTitlePacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/SetTitlePacket.h -------------------------------------------------------------------------------- /src/mc/common/network/packet/TextPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/TextPacket.cpp -------------------------------------------------------------------------------- /src/mc/common/network/packet/TextPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/network/packet/TextPacket.h -------------------------------------------------------------------------------- /src/mc/common/server/ServerInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/server/ServerInstance.h -------------------------------------------------------------------------------- /src/mc/common/util/BasicDataOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/util/BasicDataOutput.h -------------------------------------------------------------------------------- /src/mc/common/util/BasicPrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/util/BasicPrintStream.h -------------------------------------------------------------------------------- /src/mc/common/util/MolangVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/util/MolangVariable.h -------------------------------------------------------------------------------- /src/mc/common/util/MolangVariableMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/util/MolangVariableMap.h -------------------------------------------------------------------------------- /src/mc/common/world/Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/Attribute.h -------------------------------------------------------------------------------- /src/mc/common/world/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/Item.h -------------------------------------------------------------------------------- /src/mc/common/world/ItemStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/ItemStack.h -------------------------------------------------------------------------------- /src/mc/common/world/ItemStackBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/ItemStackBase.cpp -------------------------------------------------------------------------------- /src/mc/common/world/ItemStackBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/ItemStackBase.h -------------------------------------------------------------------------------- /src/mc/common/world/Minecraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/Minecraft.cpp -------------------------------------------------------------------------------- /src/mc/common/world/Minecraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/Minecraft.h -------------------------------------------------------------------------------- /src/mc/common/world/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/Timer.h -------------------------------------------------------------------------------- /src/mc/common/world/Weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/Weather.h -------------------------------------------------------------------------------- /src/mc/common/world/actor/Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/Actor.cpp -------------------------------------------------------------------------------- /src/mc/common/world/actor/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/Actor.h -------------------------------------------------------------------------------- /src/mc/common/world/actor/Mob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/Mob.h -------------------------------------------------------------------------------- /src/mc/common/world/actor/player/GameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/player/GameMode.h -------------------------------------------------------------------------------- /src/mc/common/world/actor/player/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/player/Inventory.h -------------------------------------------------------------------------------- /src/mc/common/world/actor/player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/player/Player.cpp -------------------------------------------------------------------------------- /src/mc/common/world/actor/player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/player/Player.h -------------------------------------------------------------------------------- /src/mc/common/world/actor/player/PlayerInventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/actor/player/PlayerInventory.h -------------------------------------------------------------------------------- /src/mc/common/world/level/BlockSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/BlockSource.h -------------------------------------------------------------------------------- /src/mc/common/world/level/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/Dimension.h -------------------------------------------------------------------------------- /src/mc/common/world/level/HitResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/HitResult.h -------------------------------------------------------------------------------- /src/mc/common/world/level/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/Level.cpp -------------------------------------------------------------------------------- /src/mc/common/world/level/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/Level.h -------------------------------------------------------------------------------- /src/mc/common/world/level/LevelData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/LevelData.cpp -------------------------------------------------------------------------------- /src/mc/common/world/level/LevelData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/LevelData.h -------------------------------------------------------------------------------- /src/mc/common/world/level/block/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/block/Block.h -------------------------------------------------------------------------------- /src/mc/common/world/level/block/BlockLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/common/world/level/block/BlockLegacy.h -------------------------------------------------------------------------------- /src/mc/deps/application/AppPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/deps/application/AppPlatform.cpp -------------------------------------------------------------------------------- /src/mc/deps/application/AppPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/deps/application/AppPlatform.h -------------------------------------------------------------------------------- /src/mc/deps/core/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/deps/core/StringUtils.h -------------------------------------------------------------------------------- /src/mc/deps/core_graphics/ImageBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/mc/deps/core_graphics/ImageBuffer.h -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/util/ChakraUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/ChakraUtil.cpp -------------------------------------------------------------------------------- /src/util/ChakraUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/ChakraUtil.h -------------------------------------------------------------------------------- /src/util/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/Crypto.h -------------------------------------------------------------------------------- /src/util/DrawContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/DrawContext.cpp -------------------------------------------------------------------------------- /src/util/DrawContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/DrawContext.h -------------------------------------------------------------------------------- /src/util/DrawUtil3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/DrawUtil3D.cpp -------------------------------------------------------------------------------- /src/util/DrawUtil3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/DrawUtil3D.h -------------------------------------------------------------------------------- /src/util/DxUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/DxUtil.cpp -------------------------------------------------------------------------------- /src/util/DxUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/DxUtil.h -------------------------------------------------------------------------------- /src/util/ErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/ErrorHandler.h -------------------------------------------------------------------------------- /src/util/ExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/ExceptionHandler.cpp -------------------------------------------------------------------------------- /src/util/ExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/ExceptionHandler.h -------------------------------------------------------------------------------- /src/util/LMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/LMath.h -------------------------------------------------------------------------------- /src/util/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/Logger.cpp -------------------------------------------------------------------------------- /src/util/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/Logger.h -------------------------------------------------------------------------------- /src/util/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/Util.cpp -------------------------------------------------------------------------------- /src/util/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/Util.h -------------------------------------------------------------------------------- /src/util/WorldToScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/WorldToScreen.cpp -------------------------------------------------------------------------------- /src/util/WorldToScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/WorldToScreen.h -------------------------------------------------------------------------------- /src/util/XorString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/XorString.h -------------------------------------------------------------------------------- /src/util/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/memory.cpp -------------------------------------------------------------------------------- /src/util/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/memory.h -------------------------------------------------------------------------------- /src/util/signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/signature.cpp -------------------------------------------------------------------------------- /src/util/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LatiteClient/Latite/HEAD/src/util/signature.h --------------------------------------------------------------------------------