├── .gitignore ├── LICENSE ├── README.md ├── common ├── build.gradle.kts └── src │ └── main │ ├── java │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ ├── interfaces │ │ ├── IAdvancementsScreen.java │ │ ├── IAdvancementsTab.java │ │ ├── ILanguage.java │ │ ├── ILanguageOptionsScreen.java │ │ └── ITranslationStorage.java │ │ └── mixins │ │ ├── MixinBootstrap.java │ │ ├── MixinKeyboard.java │ │ ├── MixinOptions.java │ │ ├── accessor │ │ ├── IAdvancementWidgetAccessor.java │ │ ├── IBookScreenAccessor.java │ │ ├── IClientChunkManagerAccessor.java │ │ ├── IClientChunkMapAccessor.java │ │ ├── IClientLevelAccessor.java │ │ ├── IClientboundSectionBlocksUpdatePacketAccessor.java │ │ ├── IEntityVelocityUpdateS2CPacketAccessor.java │ │ ├── IMinecraftClientAccessor.java │ │ ├── IPlayerMoveC2SPacketAccessor.java │ │ ├── IPositionMoveRotationAccessor.java │ │ ├── IServerboundHelloPacketAccessor.java │ │ ├── ISignTextAccessor.java │ │ └── ITextDisplayEntityAccessor.java │ │ ├── entity │ │ ├── MixinEntity.java │ │ └── MixinLivingEntity.java │ │ ├── gui │ │ └── screen │ │ │ ├── MixinAdvancementTab.java │ │ │ ├── MixinAdvancementsScreen.java │ │ │ ├── MixinClientLanguage.java │ │ │ ├── MixinRecipeBookWidget.java │ │ │ └── MixinTranslatableTextContent.java │ │ ├── language │ │ ├── MixinLanguage.java │ │ ├── MixinLanguageManager.java │ │ └── MixinLanguageOptionsScreen.java │ │ ├── network │ │ ├── MixinClientConnection.java │ │ └── MixinClientPacketListener.java │ │ ├── option │ │ └── MixinKeyBinding.java │ │ ├── player │ │ ├── MixinKeyboardInput.java │ │ ├── MixinLocalPlayer.java │ │ ├── MixinMultiPlayerGameMode.java │ │ └── MixinPlayer.java │ │ ├── remove_poll │ │ └── MixinRenderSystem.java │ │ ├── render │ │ ├── MixinArmorFeatureRenderer.java │ │ ├── MixinArmorStandEntityRenderer.java │ │ ├── MixinBackgroundRenderer.java │ │ ├── MixinCamera.java │ │ ├── MixinEntityRenderDispatcher.java │ │ ├── MixinEntityRenderer.java │ │ ├── MixinGameRenderer.java │ │ ├── MixinInGameOverlayRenderer.java │ │ ├── MixinInactivityFpsLimiter.java │ │ ├── MixinIngameHud.java │ │ ├── MixinItemFrameEntityRenderer.java │ │ ├── MixinLightTexture.java │ │ ├── MixinLivingEntityRenderer.java │ │ ├── MixinMobEntityRenderer.java │ │ ├── MixinParticleEngine.java │ │ ├── MixinVertexBuffer.java │ │ ├── MixinWindow.java │ │ └── MixinWorldRenderer.java │ │ └── world │ │ ├── MixinBlock.java │ │ ├── MixinBlockItem.java │ │ ├── MixinBlockState.java │ │ ├── MixinClientLevel.java │ │ ├── MixinCobwebBlock.java │ │ └── MixinLevel.java │ ├── kotlin │ ├── love │ │ └── xiguajerry │ │ │ └── nullhack │ │ │ ├── I18NManager.kt │ │ │ ├── Metadata.kt │ │ │ ├── MixinPlugin.kt │ │ │ ├── NullHackMod.kt │ │ │ ├── RenderSystem.kt │ │ │ ├── command │ │ │ ├── AbstractCommandManager.kt │ │ │ ├── Args.kt │ │ │ ├── BlockTypeAlias.kt │ │ │ ├── ClientCommand.kt │ │ │ ├── Command.kt │ │ │ ├── CommandBuilder.kt │ │ │ ├── CommandManager.kt │ │ │ ├── Exceptions.kt │ │ │ ├── Invokable.kt │ │ │ ├── args │ │ │ │ ├── AbstractArg.kt │ │ │ │ ├── ArgIdentifier.kt │ │ │ │ ├── Args.kt │ │ │ │ ├── AutoComplete.kt │ │ │ │ └── FinalArg.kt │ │ │ ├── comands │ │ │ │ └── SearchCommand.kt │ │ │ └── execute │ │ │ │ ├── ExecuteEvent.kt │ │ │ │ ├── ExecuteOption.kt │ │ │ │ └── IExecuteEvent.kt │ │ │ ├── config │ │ │ ├── Categories.kt │ │ │ ├── ConfigCategories.kt │ │ │ ├── Configurable.kt │ │ │ ├── FileSystemSource.kt │ │ │ ├── NamespacedConfigurationManager.kt │ │ │ ├── filesystem │ │ │ │ ├── AbstractFile.kt │ │ │ │ ├── FileSystem.kt │ │ │ │ └── Path.kt │ │ │ └── settings │ │ │ │ ├── AbstractListSetting.kt │ │ │ │ ├── AbstractRangedSetting.kt │ │ │ │ ├── AbstractSetSetting.kt │ │ │ │ ├── AbstractSetting.kt │ │ │ │ ├── AbstractSteppingRangedSetting.kt │ │ │ │ ├── BindSetting.kt │ │ │ │ ├── BooleanSetting.kt │ │ │ │ ├── ColorSetting.kt │ │ │ │ ├── DoubleSetting.kt │ │ │ │ ├── EnumSetting.kt │ │ │ │ ├── FloatSetting.kt │ │ │ │ ├── IntSetting.kt │ │ │ │ ├── LabelSetting.kt │ │ │ │ ├── LongSetting.kt │ │ │ │ ├── StringListSetting.kt │ │ │ │ ├── StringSetSetting.kt │ │ │ │ ├── StringSetting.kt │ │ │ │ └── WrappedSetting.kt │ │ │ ├── event │ │ │ ├── EventClasses.kt │ │ │ ├── EventProcessor.kt │ │ │ ├── api │ │ │ │ ├── ClientExecuteContext.kt │ │ │ │ ├── EventBus.kt │ │ │ │ ├── Handlers.kt │ │ │ │ ├── ICancellable.kt │ │ │ │ ├── IEvent.kt │ │ │ │ ├── IListening.kt │ │ │ │ └── IPosting.kt │ │ │ └── impl │ │ │ │ ├── LoopEvent.kt │ │ │ │ ├── PacketEvent.kt │ │ │ │ ├── TickEvent.kt │ │ │ │ ├── UpdateEvent.kt │ │ │ │ ├── client │ │ │ │ └── SendMessageEvent.kt │ │ │ │ ├── player │ │ │ │ ├── AirStrafingSpeedEvent.kt │ │ │ │ ├── AttackEntityEvent.kt │ │ │ │ ├── HotbarUpdateEvent.kt │ │ │ │ ├── InputUpdateEvent.kt │ │ │ │ ├── IsPlayerInWaterEvent.kt │ │ │ │ ├── OnUpdateWalkingPlayerEvent.kt │ │ │ │ ├── PlayerClickBlockEvent.kt │ │ │ │ ├── PlayerJumpEvent.kt │ │ │ │ ├── PlayerMoveEvent.kt │ │ │ │ ├── PlayerPopEvent.kt │ │ │ │ ├── PlayerPushOutOfBlockEvent.kt │ │ │ │ ├── PlayerTravelEvent.kt │ │ │ │ └── PlayerUpdateVelocityEvent.kt │ │ │ │ ├── render │ │ │ │ ├── CoreRender2DEvent.kt │ │ │ │ ├── CoreRender3DEvent.kt │ │ │ │ ├── FenceSyncEvent.kt │ │ │ │ ├── ParticleEvent.kt │ │ │ │ ├── Render2DEvent.kt │ │ │ │ ├── Render3DEvent.kt │ │ │ │ ├── RenderEntityEvent.kt │ │ │ │ ├── ResolutionUpdateEvent.kt │ │ │ │ └── Skija2DEvent.kt │ │ │ │ └── world │ │ │ │ ├── CombatEvent.kt │ │ │ │ ├── ConnectionEvent.kt │ │ │ │ ├── CrystalEvents.kt │ │ │ │ ├── PlaceBlockEvent.kt │ │ │ │ ├── TickEntityEvent.kt │ │ │ │ └── WorldEvent.kt │ │ │ ├── graphics │ │ │ ├── AbstractRenderer.kt │ │ │ ├── BacksideFrameCounter.kt │ │ │ ├── ESPRenderer.kt │ │ │ ├── FrameCounter.kt │ │ │ ├── GLCompatibility.kt │ │ │ ├── GLDataType.kt │ │ │ ├── GLHelper.kt │ │ │ ├── GLObject.kt │ │ │ ├── OpenGLWrapper.kt │ │ │ ├── ParticleSystem.kt │ │ │ ├── StaticBoxRenderer.kt │ │ │ ├── StaticTracerRenderer.kt │ │ │ ├── VertexCache.kt │ │ │ ├── animations │ │ │ │ ├── AnimationFlag.kt │ │ │ │ ├── BlockEasingRender.kt │ │ │ │ ├── DynamicAnimationFlag.kt │ │ │ │ ├── DynamicBlockEasingRender.kt │ │ │ │ ├── Easing.kt │ │ │ │ ├── FullRenderInfo.kt │ │ │ │ └── InterpolateFunction.kt │ │ │ ├── buffer │ │ │ │ ├── Render2DUtils.kt │ │ │ │ ├── Render3DUtils.kt │ │ │ │ ├── Renderer2D.kt │ │ │ │ ├── VertexAttribute.kt │ │ │ │ ├── VertexFormat.kt │ │ │ │ └── pmvbo │ │ │ │ │ ├── PMVBORenderer2D.kt │ │ │ │ │ ├── PMVBObjects.kt │ │ │ │ │ └── PersistentMappedVBO.kt │ │ │ ├── color │ │ │ │ ├── ColorGradient.kt │ │ │ │ ├── ColorHSVA.kt │ │ │ │ ├── ColorHolder.kt │ │ │ │ ├── ColorRGBA.kt │ │ │ │ ├── ColorSpace.kt │ │ │ │ ├── ColorUtils.kt │ │ │ │ ├── GLColor.kt │ │ │ │ ├── HueCycler.kt │ │ │ │ └── types.kt │ │ │ ├── font │ │ │ │ ├── ArrayedUnicodeFontRenderer.kt │ │ │ │ ├── FontRenderer.kt │ │ │ │ ├── ICompatibleFontRenderer.kt │ │ │ │ ├── IGradientFontRenderer.kt │ │ │ │ ├── IconMapper.kt │ │ │ │ ├── Statistics.kt │ │ │ │ ├── Style.kt │ │ │ │ ├── TextComponent.kt │ │ │ │ └── UnicodeFontRenderer.kt │ │ │ ├── imgui │ │ │ │ ├── Extensions.kt │ │ │ │ ├── ImGuiScreen.kt │ │ │ │ └── Spectrum.kt │ │ │ ├── mask │ │ │ │ ├── BoxOutlineMask.kt │ │ │ │ ├── BoxVertexMask.kt │ │ │ │ └── SideMask.kt │ │ │ ├── matrix │ │ │ │ ├── Matrix.kt │ │ │ │ └── MatrixLayerStack.kt │ │ │ ├── media │ │ │ │ └── SoftVideoDecoder.kt │ │ │ ├── model │ │ │ │ ├── AbstractModel.kt │ │ │ │ ├── Mesh.kt │ │ │ │ ├── MeshRenderer.kt │ │ │ │ ├── ModelTexture.kt │ │ │ │ ├── Vertex.kt │ │ │ │ ├── impls │ │ │ │ │ ├── CubeModel.kt │ │ │ │ │ └── ExternalModel.kt │ │ │ │ └── mesh │ │ │ │ │ └── ExtractedMesh.kt │ │ │ ├── shader │ │ │ │ ├── BlurRenderer.kt │ │ │ │ ├── ConnectedParticles.kt │ │ │ │ ├── MotionBlur.kt │ │ │ │ ├── Shader.kt │ │ │ │ ├── ShaderPathResolver.kt │ │ │ │ └── bg │ │ │ │ │ └── IgniteParticles.kt │ │ │ ├── sync │ │ │ │ └── Signal.kt │ │ │ └── texture │ │ │ │ ├── AbstractTexture.kt │ │ │ │ ├── ArrayTexture.kt │ │ │ │ ├── FixedFramebuffer.kt │ │ │ │ ├── Framebuffer.kt │ │ │ │ ├── FramebufferTexture.kt │ │ │ │ ├── ImageUtils.kt │ │ │ │ ├── MipmapTexture.kt │ │ │ │ ├── ResizableFramebuffer.kt │ │ │ │ ├── Texture.kt │ │ │ │ ├── WrappedTexture.kt │ │ │ │ ├── delegate │ │ │ │ ├── DelegateTexture.kt │ │ │ │ ├── InstantTexture.kt │ │ │ │ └── LateUploadTexture.kt │ │ │ │ └── loader │ │ │ │ ├── AsyncTextureLoader.kt │ │ │ │ ├── LazyTextureContainer.kt │ │ │ │ └── TextureLoader.kt │ │ │ ├── gui │ │ │ ├── ColorPicker.kt │ │ │ ├── Component.kt │ │ │ ├── HudModule.kt │ │ │ ├── NullClickGui.kt │ │ │ ├── NullHackGui.kt │ │ │ ├── NullHudEditor.kt │ │ │ ├── components │ │ │ │ ├── BindSettingComponent.kt │ │ │ │ ├── BooleanSettingComponent.kt │ │ │ │ ├── ColorSettingComponent.kt │ │ │ │ ├── CommonSettingComponent.kt │ │ │ │ ├── DoubleSettingComponent.kt │ │ │ │ ├── EnumSettingComponent.kt │ │ │ │ ├── FloatSettingComponent.kt │ │ │ │ ├── IntSettingComponent.kt │ │ │ │ ├── LabelSettingComponent.kt │ │ │ │ ├── ModuleComponent.kt │ │ │ │ ├── Panel.kt │ │ │ │ └── StringSettingComponent.kt │ │ │ └── hud │ │ │ │ ├── PlainTextHud.kt │ │ │ │ └── impl │ │ │ │ ├── ActiveModules.kt │ │ │ │ ├── HudArrayList.kt │ │ │ │ ├── HudEventPosts.kt │ │ │ │ ├── HudFPS.kt │ │ │ │ └── Notification.kt │ │ │ ├── i18n │ │ │ ├── I18N.kt │ │ │ ├── I18NText.kt │ │ │ ├── ILocalized.kt │ │ │ ├── ILocalizedNameable.kt │ │ │ ├── Lang.kt │ │ │ └── LocalizedNameable.kt │ │ │ ├── language │ │ │ ├── Config.kt │ │ │ ├── LanguageEntry.kt │ │ │ └── LanguageListWidget.kt │ │ │ ├── libraries │ │ │ ├── AbstractLibrary.kt │ │ │ ├── Environment.kt │ │ │ ├── ImGui.kt │ │ │ └── LibraryLoader.kt │ │ │ ├── manager │ │ │ ├── AbstractManager.kt │ │ │ ├── ManagerLoader.kt │ │ │ └── managers │ │ │ │ ├── CombatManager.kt │ │ │ │ ├── ConfigManager.kt │ │ │ │ ├── EntityManager.kt │ │ │ │ ├── EntityMovementManager.kt │ │ │ │ ├── FriendManager.kt │ │ │ │ ├── GuiManager.kt │ │ │ │ ├── HotbarSwitchManager.kt │ │ │ │ ├── InventoryManager.kt │ │ │ │ ├── ModuleManager.kt │ │ │ │ ├── NotificationManager.kt │ │ │ │ ├── PlayerPacketManager.kt │ │ │ │ ├── PlayerPopTotemManager.kt │ │ │ │ ├── ProcessExitHook.kt │ │ │ │ ├── TextureManager.kt │ │ │ │ ├── TimerManager.kt │ │ │ │ └── UnicodeFontManager.kt │ │ │ ├── mixins │ │ │ └── MixinMinecraft.kt │ │ │ ├── modules │ │ │ ├── AbstractModule.kt │ │ │ ├── Category.kt │ │ │ ├── ExperimentalModule.kt │ │ │ ├── LuaModule.kt │ │ │ ├── Module.kt │ │ │ └── impl │ │ │ │ ├── client │ │ │ │ ├── AnimeType.kt │ │ │ │ ├── BackgroundType.kt │ │ │ │ ├── ClickGui.kt │ │ │ │ ├── ClientSettings.kt │ │ │ │ ├── Colors.kt │ │ │ │ ├── GraphicsInfo.kt │ │ │ │ ├── HudEditor.kt │ │ │ │ ├── HurtTimeDebug.kt │ │ │ │ ├── PacketDebug.kt │ │ │ │ ├── Presets.kt │ │ │ │ ├── RefreshFontCache.kt │ │ │ │ ├── ReloadScript.kt │ │ │ │ └── Watermark.kt │ │ │ │ ├── combat │ │ │ │ ├── AutoTotem.kt │ │ │ │ ├── Criticals.kt │ │ │ │ ├── KillAura.kt │ │ │ │ ├── MaceSpoof.kt │ │ │ │ └── zc │ │ │ │ │ └── ZealotCrystal.kt │ │ │ │ ├── misc │ │ │ │ ├── AntiItemCrash.kt │ │ │ │ ├── FakePlayer.kt │ │ │ │ ├── FastPlace.kt │ │ │ │ ├── HitSound.kt │ │ │ │ └── HitboxDesync.kt │ │ │ │ ├── movement │ │ │ │ ├── ElytraFlight.kt │ │ │ │ ├── ElytraFlightNew.kt │ │ │ │ ├── Flight.kt │ │ │ │ ├── GuiMove.kt │ │ │ │ ├── NoFall.kt │ │ │ │ ├── NoSlowDown.kt │ │ │ │ ├── SafeWalk.kt │ │ │ │ ├── Sprint.kt │ │ │ │ └── Velocity.kt │ │ │ │ ├── player │ │ │ │ ├── AntiHunger.kt │ │ │ │ ├── AutoRespawn.kt │ │ │ │ ├── MultiTask.kt │ │ │ │ ├── NoEntityTrace.kt │ │ │ │ ├── NoRotate.kt │ │ │ │ ├── PacketMine.kt │ │ │ │ ├── Scaffold.kt │ │ │ │ └── Search.kt │ │ │ │ └── visual │ │ │ │ ├── AspectRatio.kt │ │ │ │ ├── BlockHighlight.kt │ │ │ │ ├── BlueArchiveHalo.kt │ │ │ │ ├── CrystalDamage.kt │ │ │ │ ├── FullBright.kt │ │ │ │ ├── MotionBlur.kt │ │ │ │ ├── NameTags.kt │ │ │ │ ├── NoCameraClip.kt │ │ │ │ ├── NoRender.kt │ │ │ │ ├── Notification.kt │ │ │ │ ├── PlaceRender.kt │ │ │ │ ├── RenderTest.kt │ │ │ │ ├── Shaders.kt │ │ │ │ ├── Tracers.kt │ │ │ │ └── valkyrie │ │ │ │ ├── Dimensions.kt │ │ │ │ ├── FlightComputer.kt │ │ │ │ ├── HudComponent.kt │ │ │ │ ├── Valkyrie.kt │ │ │ │ └── components │ │ │ │ ├── AltitudeIndicator.kt │ │ │ │ ├── ElytraHealthIndicator.kt │ │ │ │ ├── FlightPathIndicator.kt │ │ │ │ ├── HeadingIndicator.kt │ │ │ │ ├── LocationIndicator.kt │ │ │ │ ├── PitchIndicator.kt │ │ │ │ └── SpeedIndicator.kt │ │ │ ├── platform │ │ │ ├── IModLoaderPlatform.kt │ │ │ └── Services.kt │ │ │ ├── script │ │ │ ├── BaseLibrary.kt │ │ │ ├── Extensions.kt │ │ │ ├── FabricPlatform.kt │ │ │ ├── HandlerLibrary.kt │ │ │ ├── ModulesLibrary.kt │ │ │ ├── PacketLibrary.kt │ │ │ ├── RenderLibrary.kt │ │ │ └── settings │ │ │ │ ├── LuaSetting.kt │ │ │ │ └── SettingsLibrary.kt │ │ │ └── utils │ │ │ ├── Alias.kt │ │ │ ├── Buffer.kt │ │ │ ├── ChatUtils.kt │ │ │ ├── Describable.kt │ │ │ ├── Displayable.kt │ │ │ ├── DoubleBuffered.kt │ │ │ ├── EntityFakePlayer.kt │ │ │ ├── EnumGameMode.kt │ │ │ ├── Helper.kt │ │ │ ├── IEnumEntriesProvider.kt │ │ │ ├── ImplicitOverriding.kt │ │ │ ├── LambdaUtils.kt │ │ │ ├── MinecraftWrapper.kt │ │ │ ├── Nameable.kt │ │ │ ├── NonNullContext.kt │ │ │ ├── Option.kt │ │ │ ├── Profilers.kt │ │ │ ├── Reflection.kt │ │ │ ├── Reflections.kt │ │ │ ├── ResourceHelper.kt │ │ │ ├── SafeLogger.kt │ │ │ ├── SafetyWarnings.kt │ │ │ ├── Supervisor.kt │ │ │ ├── Task.kt │ │ │ ├── TimeUtil.kt │ │ │ ├── TimerUtil.kt │ │ │ ├── collections │ │ │ ├── AliasSet.kt │ │ │ ├── ArrayMap.kt │ │ │ ├── CircularArray.kt │ │ │ ├── Collections.kt │ │ │ ├── Enum.kt │ │ │ ├── FastIntMap.kt │ │ │ ├── FastObjectArrayList.kt │ │ │ ├── HList.kt │ │ │ ├── MutableIntIterator.kt │ │ │ └── NameableSet.kt │ │ │ ├── combat │ │ │ ├── BlockInteractionHelper.kt │ │ │ ├── BurrowUtils.kt │ │ │ ├── CombatUtil.kt │ │ │ ├── MotionTracker.kt │ │ │ └── MovementUtils.kt │ │ │ ├── delegates │ │ │ ├── AsyncCachedValue.kt │ │ │ ├── CachedValue.kt │ │ │ ├── CachedValueN.kt │ │ │ ├── DynamicCachedValue.kt │ │ │ └── ParallelPropertyUpdater.kt │ │ │ ├── extension │ │ │ ├── Atomics.kt │ │ │ ├── BlockPos.kt │ │ │ ├── Box.kt │ │ │ ├── Color.kt │ │ │ ├── Enchantment.kt │ │ │ ├── Entity.kt │ │ │ ├── File.kt │ │ │ ├── Interaction.kt │ │ │ ├── ItemStack.kt │ │ │ ├── Items.kt │ │ │ ├── Iterable.kt │ │ │ ├── Lambda.kt │ │ │ ├── Map.kt │ │ │ ├── Minecraft.kt │ │ │ ├── Packets.kt │ │ │ ├── Slot.kt │ │ │ ├── String.kt │ │ │ ├── Vectors.kt │ │ │ └── World.kt │ │ │ ├── formatValue.kt │ │ │ ├── input │ │ │ ├── CursorStyle.kt │ │ │ ├── GuiKeyEvents.kt │ │ │ ├── KeyAction.kt │ │ │ ├── KeyBind.kt │ │ │ ├── KeyBinds.kt │ │ │ └── KeyboardUtil.kt │ │ │ ├── inventory │ │ │ ├── Block.kt │ │ │ ├── Defined.kt │ │ │ ├── HotbarSlot.kt │ │ │ ├── Interaction.kt │ │ │ ├── InventoryUtils.kt │ │ │ ├── SlotRanges.kt │ │ │ └── pause │ │ │ │ ├── Extension.kt │ │ │ │ ├── HandPause.kt │ │ │ │ ├── Pause.kt │ │ │ │ └── PriorityTimeoutPause.kt │ │ │ ├── math │ │ │ ├── Math.kt │ │ │ ├── MathUtils.kt │ │ │ ├── RotationUtils.kt │ │ │ ├── primitive │ │ │ │ └── Angle.kt │ │ │ └── vectors │ │ │ │ ├── Alignment.kt │ │ │ │ ├── Conversion.kt │ │ │ │ ├── Distance.kt │ │ │ │ ├── Vec2d.kt │ │ │ │ ├── Vec2f.kt │ │ │ │ ├── Vec2i.kt │ │ │ │ ├── Vec3f.kt │ │ │ │ └── VectorUtils.kt │ │ │ ├── sound │ │ │ └── SoundPack.kt │ │ │ ├── state │ │ │ ├── FrameValue.kt │ │ │ └── TimedFlag.kt │ │ │ ├── threads │ │ │ ├── ConcurrentTaskManager.kt │ │ │ ├── CoroutineUtils.kt │ │ │ ├── CountingThreadFactory.kt │ │ │ └── MinPriorityThreadFactory.kt │ │ │ ├── timing │ │ │ ├── NanoTickTimer.kt │ │ │ ├── NanoTimeUnit.kt │ │ │ ├── TickTimer.kt │ │ │ └── TimeUnit.kt │ │ │ └── world │ │ │ ├── BlockPlaceOption.kt │ │ │ ├── BlockUtils.kt │ │ │ ├── CLionPos.kt │ │ │ ├── Check.kt │ │ │ ├── CombatRules.kt │ │ │ ├── CrystalUtils.kt │ │ │ ├── DirectionMask.kt │ │ │ ├── EntityUtils.kt │ │ │ ├── FastRayTrace.kt │ │ │ ├── Interact.kt │ │ │ ├── MineUtils.kt │ │ │ ├── PlaceInfo.kt │ │ │ ├── PlaceOptions.kt │ │ │ └── explosion │ │ │ └── advanced │ │ │ ├── CalcContext.kt │ │ │ ├── CrystalDamage.kt │ │ │ ├── DamageCalculation.kt │ │ │ ├── DamageReduction.kt │ │ │ └── ExposureSample.kt │ └── net │ │ └── spartanb312 │ │ └── everett │ │ └── graphics │ │ └── SparseTextureArrayFontRenderer.kt │ └── resources │ ├── META-INF │ └── accesstransformer.cfg │ ├── assets │ ├── nullhack │ │ ├── Genshin.ttf │ │ ├── IconFont.ttf │ │ ├── LexendDeca-Regular.ttf │ │ ├── MicrosoftYahei.ttf │ │ ├── alien_dance │ │ │ ├── alien_dance-0000.png │ │ │ ├── alien_dance-0001.png │ │ │ ├── alien_dance-0002.png │ │ │ ├── alien_dance-0003.png │ │ │ ├── alien_dance-0004.png │ │ │ ├── alien_dance-0005.png │ │ │ ├── alien_dance-0006.png │ │ │ ├── alien_dance-0007.png │ │ │ ├── alien_dance-0008.png │ │ │ ├── alien_dance-0009.png │ │ │ ├── alien_dance-0010.png │ │ │ ├── alien_dance-0011.png │ │ │ ├── alien_dance-0012.png │ │ │ ├── alien_dance-0013.png │ │ │ ├── alien_dance-0014.png │ │ │ ├── alien_dance-0015.png │ │ │ ├── alien_dance-0016.png │ │ │ ├── alien_dance-0017.png │ │ │ ├── alien_dance-0018.png │ │ │ ├── alien_dance-0019.png │ │ │ ├── alien_dance-0020.png │ │ │ ├── alien_dance-0021.png │ │ │ ├── alien_dance-0022.png │ │ │ ├── alien_dance-0023.png │ │ │ ├── alien_dance-0024.png │ │ │ ├── alien_dance-0025.png │ │ │ ├── alien_dance-0026.png │ │ │ ├── alien_dance-0027.png │ │ │ ├── alien_dance-0028.png │ │ │ ├── alien_dance-0029.png │ │ │ ├── alien_dance-0030.png │ │ │ ├── alien_dance-0031.png │ │ │ ├── alien_dance-0032.png │ │ │ ├── alien_dance-0033.png │ │ │ ├── alien_dance-0034.png │ │ │ ├── alien_dance-0035.png │ │ │ ├── alien_dance-0036.png │ │ │ ├── alien_dance-0037.png │ │ │ ├── alien_dance-0038.png │ │ │ ├── alien_dance-0039.png │ │ │ ├── alien_dance-0040.png │ │ │ ├── alien_dance-0041.png │ │ │ ├── alien_dance-0042.png │ │ │ ├── alien_dance-0043.png │ │ │ ├── alien_dance-0044.png │ │ │ ├── alien_dance-0045.png │ │ │ ├── alien_dance-0046.png │ │ │ ├── alien_dance-0047.png │ │ │ ├── alien_dance-0048.png │ │ │ ├── alien_dance-0049.png │ │ │ ├── alien_dance-0050.png │ │ │ ├── alien_dance-0051.png │ │ │ ├── alien_dance-0052.png │ │ │ ├── alien_dance-0053.png │ │ │ ├── alien_dance-0054.png │ │ │ ├── alien_dance-0055.png │ │ │ ├── alien_dance-0056.png │ │ │ ├── alien_dance-0057.png │ │ │ ├── alien_dance-0058.png │ │ │ ├── alien_dance-0059.png │ │ │ ├── alien_dance-0060.png │ │ │ ├── alien_dance-0061.png │ │ │ ├── alien_dance-0062.png │ │ │ ├── alien_dance-0063.png │ │ │ ├── alien_dance-0064.png │ │ │ ├── alien_dance-0065.png │ │ │ ├── alien_dance-0066.png │ │ │ ├── alien_dance-0067.png │ │ │ ├── alien_dance-0068.png │ │ │ ├── alien_dance-0069.png │ │ │ ├── alien_dance-0070.png │ │ │ ├── alien_dance-0071.png │ │ │ ├── alien_dance-0072.png │ │ │ ├── alien_dance-0073.png │ │ │ ├── alien_dance-0074.png │ │ │ ├── alien_dance-0075.png │ │ │ ├── alien_dance-0076.png │ │ │ ├── alien_dance-0077.png │ │ │ ├── alien_dance-0078.png │ │ │ ├── alien_dance-0079.png │ │ │ ├── alien_dance-0080.png │ │ │ ├── alien_dance-0081.png │ │ │ ├── alien_dance-0082.png │ │ │ ├── alien_dance-0083.png │ │ │ ├── alien_dance-0084.png │ │ │ ├── alien_dance-0085.png │ │ │ ├── alien_dance-0086.png │ │ │ ├── alien_dance-0087.png │ │ │ ├── alien_dance-0088.png │ │ │ ├── alien_dance-0089.png │ │ │ ├── alien_dance-0090.png │ │ │ ├── alien_dance-0091.png │ │ │ ├── alien_dance-0092.png │ │ │ ├── alien_dance-0093.png │ │ │ ├── alien_dance-0094.png │ │ │ ├── alien_dance-0095.png │ │ │ ├── alien_dance-0096.png │ │ │ ├── alien_dance-0097.png │ │ │ ├── alien_dance-0098.png │ │ │ ├── alien_dance-0099.png │ │ │ ├── alien_dance-0100.png │ │ │ ├── alien_dance-0101.png │ │ │ ├── alien_dance-0102.png │ │ │ ├── alien_dance-0103.png │ │ │ ├── alien_dance-0104.png │ │ │ ├── alien_dance-0105.png │ │ │ ├── alien_dance-0106.png │ │ │ ├── alien_dance-0107.png │ │ │ ├── alien_dance-0108.png │ │ │ ├── alien_dance-0109.png │ │ │ ├── alien_dance-0110.png │ │ │ ├── alien_dance-0111.png │ │ │ ├── alien_dance-0112.png │ │ │ ├── alien_dance-0113.png │ │ │ ├── alien_dance-0114.png │ │ │ ├── alien_dance-0115.png │ │ │ ├── alien_dance-0116.png │ │ │ ├── alien_dance-0117.png │ │ │ ├── alien_dance-0118.png │ │ │ └── alien_dance-0119.png │ │ ├── background │ │ │ ├── AceTaffy.png │ │ │ ├── AkiyamaMio.png │ │ │ ├── AwaSubaru.png │ │ │ ├── AzumaSeren.png │ │ │ ├── EbizukaTomo.png │ │ │ ├── HitoriGotoh.png │ │ │ ├── IjichiNijika.png │ │ │ ├── InoeTakina.png │ │ │ ├── IseriNina.png │ │ │ ├── KawaragiMomoka.png │ │ │ ├── KitaIkuyo.png │ │ │ ├── LycorisPartner.png │ │ │ ├── MashiroKanon.png │ │ │ ├── NakanoAzusa.png │ │ │ ├── NishikigiChisato.png │ │ │ ├── NishikigiChisato2.png │ │ │ ├── Rupa.png │ │ │ ├── YamadaRyō.png │ │ │ └── minghuishield.png │ │ ├── lang │ │ │ ├── be_by.json │ │ │ ├── en_us.json │ │ │ ├── en_us.lang │ │ │ ├── es_es.json │ │ │ ├── et_ee.json │ │ │ ├── fr_fr.json │ │ │ ├── it_it.json │ │ │ ├── ja_jp.json │ │ │ ├── ko_kr.json │ │ │ ├── pl_pl.json │ │ │ ├── pt_br.json │ │ │ ├── ru_ru.json │ │ │ ├── tt_ru.json │ │ │ ├── uk_ua.json │ │ │ ├── vi_vn.json │ │ │ ├── zh_cn.json │ │ │ ├── zh_cn.lang │ │ │ └── zh_tw.json │ │ ├── libraries │ │ │ ├── imgui-java64.dll │ │ │ ├── libimgui-java64.dylib │ │ │ ├── libimgui-java64.so │ │ │ └── nullhack-native.dll │ │ ├── sounds.json │ │ ├── sounds │ │ │ ├── disable.ogg │ │ │ ├── enable.ogg │ │ │ ├── init_morning.wav │ │ │ ├── init_night.wav │ │ │ ├── keypress.ogg │ │ │ ├── keyrelease.ogg │ │ │ ├── moan1.ogg │ │ │ ├── moan2.ogg │ │ │ ├── moan3.ogg │ │ │ ├── moan4.ogg │ │ │ ├── orthodox.ogg │ │ │ ├── skeet.ogg │ │ │ └── uwu.ogg │ │ └── textures │ │ │ └── gui │ │ │ └── sprites │ │ │ └── language_selection │ │ │ ├── add.png │ │ │ ├── add_highlighted.png │ │ │ ├── move_down.png │ │ │ ├── move_down_highlighted.png │ │ │ ├── move_up.png │ │ │ ├── move_up_highlighted.png │ │ │ ├── remove.png │ │ │ └── remove_highlighted.png │ └── shader │ │ ├── background │ │ ├── connectedParticles.fsh │ │ ├── connectedParticlesChannel0.fsh │ │ ├── igniteParticles.fsh │ │ ├── noise.png │ │ └── nopVertex.vsh │ │ ├── effect │ │ ├── MotionBlur.fsh │ │ ├── MotionBlur.vsh │ │ ├── outline.fsh │ │ └── outline.vsh │ │ ├── general │ │ ├── Blit.fsh │ │ ├── Blit.vsh │ │ ├── Blur.fsh │ │ ├── BlurH.vsh │ │ ├── BlurMS.fsh │ │ ├── BlurV.vsh │ │ ├── Pos2fColor.fsh │ │ ├── Pos2fColor.vsh │ │ ├── Pos2fColorTex.fsh │ │ ├── Pos2fColorTex.vsh │ │ ├── Pos2fColorTexArray.fsh │ │ ├── Pos2fColorTexArray.vsh │ │ ├── Pos3fColor.fsh │ │ ├── Pos3fColor.vsh │ │ ├── Pos3fColorTex.fsh │ │ ├── Pos3fColorTex.vsh │ │ ├── Pos3fTex.fsh │ │ ├── Pos3fTex.vsh │ │ ├── Pos3fTexNV12.fsh │ │ ├── Pos3fTexNV12.vsh │ │ ├── Pos3fTexYUV.fsh │ │ ├── Pos3fTexYUV.vsh │ │ ├── Renderer.fsh │ │ ├── StaticBoxRenderer.vsh │ │ ├── StaticTracerRenderer.vsh │ │ ├── UniversalDraw.fsh │ │ └── UniversalDraw.vsh │ │ ├── lighting │ │ ├── test.fsh │ │ └── test.vsh │ │ ├── model │ │ ├── MeshDNSH.fsh │ │ └── MeshVertex.vsh │ │ ├── port │ │ ├── SparseTextureArrayFontRenderer.fsh │ │ └── SparseTextureArrayFontRenderer.vsh │ │ └── sandbox │ │ ├── DefaultVertex.vsh │ │ └── Nebula.fsh │ ├── nullhack.accesswidener │ └── nullhack.mixins.json ├── fabric ├── build.gradle.kts └── src │ └── main │ ├── java │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ └── mixins │ │ └── gui │ │ └── screen │ │ └── MixinSearchManager.java │ ├── kotlin │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ └── fabric │ │ ├── FabricPlatform.kt │ │ └── NullHackMod.kt │ └── resources │ ├── META-INF │ └── services │ │ └── love.xiguajerry.nullhack.platform.IModLoaderPlatform │ ├── fabric.mod.json │ └── nullhack.fabric.mixins.json ├── forge ├── build.gradle.kts └── src │ └── main │ ├── java │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ └── mixins │ │ └── gui │ │ └── screen │ │ └── MixinSearchManager.java │ ├── kotlin │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ └── forge │ │ ├── ForgePlatform.kt │ │ └── NullHackMod.kt │ └── resources │ ├── META-INF │ ├── mods.toml │ └── services │ │ └── love.xiguajerry.nullhack.platform.IModLoaderPlatform │ └── nullhack.forge.mixins.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── neoforge ├── build.gradle.kts └── src │ └── main │ ├── java │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ └── mixins │ │ └── gui │ │ └── screen │ │ └── MixinSearchManager.java │ ├── kotlin │ └── love │ │ └── xiguajerry │ │ └── nullhack │ │ └── neoforge │ │ ├── NeoforgePlatform.kt │ │ └── NullHackMod.kt │ └── resources │ ├── META-INF │ ├── neoforge.mods.toml │ └── services │ │ └── love.xiguajerry.nullhack.platform.IModLoaderPlatform │ └── nullhack.neoforge.mixins.json ├── screenshot.png └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/build.gradle.kts -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/interfaces/IAdvancementsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/interfaces/IAdvancementsScreen.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/interfaces/IAdvancementsTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/interfaces/IAdvancementsTab.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/interfaces/ILanguage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/interfaces/ILanguage.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/interfaces/ILanguageOptionsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/interfaces/ILanguageOptionsScreen.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/interfaces/ITranslationStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/interfaces/ITranslationStorage.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/MixinBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/MixinBootstrap.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/MixinKeyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/MixinKeyboard.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/MixinOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/MixinOptions.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/accessor/IBookScreenAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/accessor/IBookScreenAccessor.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/accessor/IClientLevelAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/accessor/IClientLevelAccessor.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/accessor/ISignTextAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/accessor/ISignTextAccessor.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/entity/MixinEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/entity/MixinEntity.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/entity/MixinLivingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/entity/MixinLivingEntity.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/gui/screen/MixinAdvancementTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/gui/screen/MixinAdvancementTab.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/gui/screen/MixinClientLanguage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/gui/screen/MixinClientLanguage.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/language/MixinLanguage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/language/MixinLanguage.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/language/MixinLanguageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/language/MixinLanguageManager.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/network/MixinClientConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/network/MixinClientConnection.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/option/MixinKeyBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/option/MixinKeyBinding.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinKeyboardInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinKeyboardInput.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinLocalPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinLocalPlayer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinMultiPlayerGameMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinMultiPlayerGameMode.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/player/MixinPlayer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/remove_poll/MixinRenderSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/remove_poll/MixinRenderSystem.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinBackgroundRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinBackgroundRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinCamera.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinEntityRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinEntityRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinGameRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinGameRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinIngameHud.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinIngameHud.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinLightTexture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinLightTexture.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinMobEntityRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinMobEntityRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinParticleEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinParticleEngine.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinVertexBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinVertexBuffer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinWindow.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinWorldRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/render/MixinWorldRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinBlock.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinBlockItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinBlockItem.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinBlockState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinBlockState.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinClientLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinClientLevel.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinCobwebBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinCobwebBlock.java -------------------------------------------------------------------------------- /common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/java/love/xiguajerry/nullhack/mixins/world/MixinLevel.java -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/I18NManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/I18NManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/Metadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/Metadata.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/MixinPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/MixinPlugin.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/NullHackMod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/NullHackMod.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/RenderSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/RenderSystem.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/AbstractCommandManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/AbstractCommandManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/Args.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/Args.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/BlockTypeAlias.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/BlockTypeAlias.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/ClientCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/ClientCommand.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/Command.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/Command.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/CommandBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/CommandBuilder.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/CommandManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/CommandManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/Exceptions.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/Invokable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/Invokable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/args/AbstractArg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/args/AbstractArg.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/args/ArgIdentifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/args/ArgIdentifier.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/args/Args.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/args/Args.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/args/AutoComplete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/args/AutoComplete.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/args/FinalArg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/args/FinalArg.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/comands/SearchCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/comands/SearchCommand.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/execute/ExecuteEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/execute/ExecuteEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/execute/ExecuteOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/execute/ExecuteOption.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/command/execute/IExecuteEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/command/execute/IExecuteEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/Categories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/Categories.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/ConfigCategories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/ConfigCategories.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/Configurable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/Configurable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/FileSystemSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/FileSystemSource.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/filesystem/AbstractFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/filesystem/AbstractFile.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/filesystem/FileSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/filesystem/FileSystem.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/filesystem/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/filesystem/Path.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/AbstractListSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/AbstractListSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/AbstractSetSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/AbstractSetSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/AbstractSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/AbstractSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/BindSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/BindSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/BooleanSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/BooleanSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/ColorSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/ColorSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/DoubleSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/DoubleSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/EnumSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/EnumSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/FloatSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/FloatSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/IntSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/IntSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/LabelSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/LabelSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/LongSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/LongSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/StringListSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/StringListSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/StringSetSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/StringSetSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/StringSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/StringSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/WrappedSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/config/settings/WrappedSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/EventClasses.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/EventClasses.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/EventProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/EventProcessor.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/ClientExecuteContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/ClientExecuteContext.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/EventBus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/EventBus.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/Handlers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/Handlers.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/ICancellable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/ICancellable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/IEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/IEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/IListening.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/IListening.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/api/IPosting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/api/IPosting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/LoopEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/LoopEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/PacketEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/PacketEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/TickEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/TickEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/UpdateEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/UpdateEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/client/SendMessageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/client/SendMessageEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/AttackEntityEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/AttackEntityEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/HotbarUpdateEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/HotbarUpdateEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/InputUpdateEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/InputUpdateEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerJumpEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerJumpEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerMoveEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerMoveEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerPopEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerPopEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerTravelEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/player/PlayerTravelEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/CoreRender2DEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/CoreRender2DEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/CoreRender3DEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/CoreRender3DEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/FenceSyncEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/FenceSyncEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/ParticleEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/ParticleEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/Render2DEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/Render2DEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/Render3DEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/Render3DEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/RenderEntityEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/RenderEntityEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/Skija2DEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/render/Skija2DEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/CombatEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/CombatEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/ConnectionEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/ConnectionEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/CrystalEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/CrystalEvents.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/PlaceBlockEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/PlaceBlockEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/TickEntityEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/TickEntityEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/WorldEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/event/impl/world/WorldEvent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/AbstractRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/AbstractRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/BacksideFrameCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/BacksideFrameCounter.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/ESPRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/ESPRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/FrameCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/FrameCounter.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLCompatibility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLCompatibility.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLDataType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLDataType.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLHelper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/GLObject.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/OpenGLWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/OpenGLWrapper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/ParticleSystem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/ParticleSystem.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/StaticBoxRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/StaticBoxRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/StaticTracerRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/StaticTracerRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/VertexCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/VertexCache.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/animations/AnimationFlag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/animations/AnimationFlag.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/animations/Easing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/animations/Easing.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/animations/FullRenderInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/animations/FullRenderInfo.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/Render2DUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/Render2DUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/Render3DUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/Render3DUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/Renderer2D.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/Renderer2D.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/VertexAttribute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/VertexAttribute.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/VertexFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/VertexFormat.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/pmvbo/PMVBObjects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/buffer/pmvbo/PMVBObjects.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorGradient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorGradient.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorHSVA.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorHSVA.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorHolder.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorRGBA.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorRGBA.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorSpace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorSpace.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/ColorUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/GLColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/GLColor.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/HueCycler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/HueCycler.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/color/types.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/FontRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/FontRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/IGradientFontRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/IGradientFontRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/IconMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/IconMapper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/Statistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/Statistics.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/Style.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/Style.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/TextComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/TextComponent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/UnicodeFontRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/font/UnicodeFontRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/imgui/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/imgui/Extensions.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/imgui/ImGuiScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/imgui/ImGuiScreen.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/imgui/Spectrum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/imgui/Spectrum.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/mask/BoxOutlineMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/mask/BoxOutlineMask.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/mask/BoxVertexMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/mask/BoxVertexMask.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/mask/SideMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/mask/SideMask.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/matrix/Matrix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/matrix/Matrix.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/matrix/MatrixLayerStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/matrix/MatrixLayerStack.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/media/SoftVideoDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/media/SoftVideoDecoder.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/AbstractModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/AbstractModel.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/Mesh.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/Mesh.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/MeshRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/MeshRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/ModelTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/ModelTexture.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/Vertex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/Vertex.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/impls/CubeModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/impls/CubeModel.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/impls/ExternalModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/impls/ExternalModel.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/mesh/ExtractedMesh.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/model/mesh/ExtractedMesh.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/BlurRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/BlurRenderer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/ConnectedParticles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/ConnectedParticles.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/MotionBlur.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/MotionBlur.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/Shader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/Shader.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/ShaderPathResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/ShaderPathResolver.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/bg/IgniteParticles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/shader/bg/IgniteParticles.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/sync/Signal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/sync/Signal.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/AbstractTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/AbstractTexture.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/ArrayTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/ArrayTexture.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/FixedFramebuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/FixedFramebuffer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/Framebuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/Framebuffer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/FramebufferTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/FramebufferTexture.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/ImageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/ImageUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/MipmapTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/MipmapTexture.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/Texture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/Texture.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/graphics/texture/WrappedTexture.kt: -------------------------------------------------------------------------------- 1 | package love.xiguajerry.nullhack.graphics.texture 2 | -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/ColorPicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/ColorPicker.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/Component.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/Component.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/HudModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/HudModule.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/NullClickGui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/NullClickGui.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/NullHackGui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/NullHackGui.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/NullHudEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/NullHudEditor.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/BindSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/BindSettingComponent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/EnumSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/EnumSettingComponent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/IntSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/IntSettingComponent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/ModuleComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/ModuleComponent.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/Panel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/components/Panel.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/PlainTextHud.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/PlainTextHud.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/ActiveModules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/ActiveModules.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/HudArrayList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/HudArrayList.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/HudEventPosts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/HudEventPosts.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/HudFPS.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/HudFPS.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/Notification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/gui/hud/impl/Notification.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/i18n/I18N.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/i18n/I18N.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/i18n/I18NText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/i18n/I18NText.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/i18n/ILocalized.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/i18n/ILocalized.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/i18n/ILocalizedNameable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/i18n/ILocalizedNameable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/i18n/Lang.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/i18n/Lang.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/i18n/LocalizedNameable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/i18n/LocalizedNameable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/language/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/language/Config.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/language/LanguageEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/language/LanguageEntry.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/language/LanguageListWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/language/LanguageListWidget.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/libraries/AbstractLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/libraries/AbstractLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/libraries/Environment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/libraries/Environment.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/libraries/ImGui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/libraries/ImGui.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/libraries/LibraryLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/libraries/LibraryLoader.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/AbstractManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/AbstractManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/ManagerLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/ManagerLoader.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/CombatManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/CombatManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/ConfigManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/ConfigManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/EntityManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/EntityManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/FriendManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/FriendManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/GuiManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/GuiManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/InventoryManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/InventoryManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/ModuleManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/ModuleManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/ProcessExitHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/ProcessExitHook.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/TextureManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/TextureManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/TimerManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/TimerManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/UnicodeFontManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/manager/managers/UnicodeFontManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/mixins/MixinMinecraft.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/mixins/MixinMinecraft.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/AbstractModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/AbstractModule.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/Category.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/Category.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/ExperimentalModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/ExperimentalModule.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/LuaModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/LuaModule.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/Module.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/AnimeType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/AnimeType.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/BackgroundType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/BackgroundType.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/ClickGui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/ClickGui.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/ClientSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/ClientSettings.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/Colors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/Colors.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/GraphicsInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/GraphicsInfo.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/HudEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/HudEditor.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/HurtTimeDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/HurtTimeDebug.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/PacketDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/PacketDebug.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/Presets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/Presets.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/ReloadScript.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/ReloadScript.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/Watermark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/client/Watermark.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/AutoTotem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/AutoTotem.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/Criticals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/Criticals.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/KillAura.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/KillAura.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/MaceSpoof.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/combat/MaceSpoof.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/AntiItemCrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/AntiItemCrash.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/FakePlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/FakePlayer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/FastPlace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/FastPlace.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/HitSound.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/HitSound.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/HitboxDesync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/misc/HitboxDesync.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/ElytraFlight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/ElytraFlight.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/Flight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/Flight.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/GuiMove.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/GuiMove.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/NoFall.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/NoFall.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/NoSlowDown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/NoSlowDown.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/SafeWalk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/SafeWalk.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/Sprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/Sprint.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/Velocity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/movement/Velocity.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/AntiHunger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/AntiHunger.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/AutoRespawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/AutoRespawn.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/MultiTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/MultiTask.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/NoEntityTrace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/NoEntityTrace.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/NoRotate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/NoRotate.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/PacketMine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/PacketMine.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/Scaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/Scaffold.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/Search.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/player/Search.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/AspectRatio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/AspectRatio.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/BlockHighlight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/BlockHighlight.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/BlueArchiveHalo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/BlueArchiveHalo.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/CrystalDamage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/CrystalDamage.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/FullBright.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/FullBright.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/MotionBlur.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/MotionBlur.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/NameTags.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/NameTags.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/NoCameraClip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/NoCameraClip.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/NoRender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/NoRender.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/Notification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/Notification.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/PlaceRender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/PlaceRender.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/RenderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/RenderTest.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/Shaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/Shaders.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/Tracers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/modules/impl/visual/Tracers.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/platform/IModLoaderPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/platform/IModLoaderPlatform.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/platform/Services.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/platform/Services.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/BaseLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/BaseLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/Extensions.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/FabricPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/FabricPlatform.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/HandlerLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/HandlerLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/ModulesLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/ModulesLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/PacketLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/PacketLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/RenderLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/RenderLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/settings/LuaSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/settings/LuaSetting.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/script/settings/SettingsLibrary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/script/settings/SettingsLibrary.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Alias.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Alias.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Buffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Buffer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/ChatUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/ChatUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Describable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Describable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Displayable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Displayable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/DoubleBuffered.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/DoubleBuffered.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/EntityFakePlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/EntityFakePlayer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/EnumGameMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/EnumGameMode.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Helper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Helper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/IEnumEntriesProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/IEnumEntriesProvider.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/ImplicitOverriding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/ImplicitOverriding.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/LambdaUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/LambdaUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/MinecraftWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/MinecraftWrapper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Nameable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Nameable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/NonNullContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/NonNullContext.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Option.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Option.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Profilers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Profilers.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Reflection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Reflection.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Reflections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Reflections.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/ResourceHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/ResourceHelper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/SafeLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/SafeLogger.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/SafetyWarnings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/SafetyWarnings.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Supervisor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Supervisor.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/Task.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/TimeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/TimeUtil.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/TimerUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/TimerUtil.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/AliasSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/AliasSet.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/ArrayMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/ArrayMap.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/CircularArray.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/CircularArray.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/Collections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/Collections.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/Enum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/Enum.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/FastIntMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/FastIntMap.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/HList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/HList.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/NameableSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/collections/NameableSet.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/BlockInteractionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/BlockInteractionHelper.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/BurrowUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/BurrowUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/CombatUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/CombatUtil.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/MotionTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/MotionTracker.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/MovementUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/combat/MovementUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/AsyncCachedValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/AsyncCachedValue.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/CachedValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/CachedValue.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/CachedValueN.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/CachedValueN.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/DynamicCachedValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/delegates/DynamicCachedValue.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Atomics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Atomics.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/BlockPos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/BlockPos.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Box.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Box.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Color.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Enchantment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Enchantment.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Entity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Entity.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/File.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/File.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Interaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Interaction.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/ItemStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/ItemStack.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Items.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Items.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Iterable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Iterable.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Lambda.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Lambda.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Map.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Map.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Minecraft.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Minecraft.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Packets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Packets.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Slot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Slot.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/String.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/String.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Vectors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/Vectors.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/World.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/extension/World.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/formatValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/formatValue.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/CursorStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/CursorStyle.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/GuiKeyEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/GuiKeyEvents.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyAction.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyBind.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyBind.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyBinds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyBinds.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyboardUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/input/KeyboardUtil.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/Block.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/Block.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/Defined.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/Defined.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/HotbarSlot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/HotbarSlot.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/Interaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/Interaction.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/InventoryUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/InventoryUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/SlotRanges.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/SlotRanges.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/pause/Extension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/pause/Extension.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/pause/HandPause.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/pause/HandPause.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/pause/Pause.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/inventory/pause/Pause.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/Math.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/MathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/MathUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/RotationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/RotationUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/primitive/Angle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/primitive/Angle.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Alignment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Alignment.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Conversion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Conversion.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Distance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Distance.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec2d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec2d.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec2f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec2f.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec2i.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec2i.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec3f.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/Vec3f.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/VectorUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/math/vectors/VectorUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/sound/SoundPack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/sound/SoundPack.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/state/FrameValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/state/FrameValue.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/state/TimedFlag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/state/TimedFlag.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/threads/ConcurrentTaskManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/threads/ConcurrentTaskManager.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/threads/CoroutineUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/threads/CoroutineUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/threads/CountingThreadFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/threads/CountingThreadFactory.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/NanoTickTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/NanoTickTimer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/NanoTimeUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/NanoTimeUnit.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/TickTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/TickTimer.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/TimeUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/timing/TimeUnit.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/BlockPlaceOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/BlockPlaceOption.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/BlockUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/BlockUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/CLionPos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/CLionPos.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/Check.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/Check.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/CombatRules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/CombatRules.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/CrystalUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/CrystalUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/DirectionMask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/DirectionMask.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/EntityUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/EntityUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/FastRayTrace.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/FastRayTrace.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/Interact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/Interact.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/MineUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/MineUtils.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/PlaceInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/PlaceInfo.kt -------------------------------------------------------------------------------- /common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/PlaceOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/kotlin/love/xiguajerry/nullhack/utils/world/PlaceOptions.kt -------------------------------------------------------------------------------- /common/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/Genshin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/Genshin.ttf -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/IconFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/IconFont.ttf -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/LexendDeca-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/LexendDeca-Regular.ttf -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/MicrosoftYahei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/MicrosoftYahei.ttf -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0000.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0001.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0002.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0003.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0004.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0005.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0006.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0007.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0008.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0009.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0010.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0011.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0012.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0013.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0014.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0015.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0016.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0017.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0018.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0019.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0020.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0021.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0022.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0023.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0024.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0025.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0026.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0027.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0028.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0029.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0030.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0031.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0032.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0033.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0034.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0035.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0036.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0037.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0038.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0039.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0040.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0041.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0042.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0043.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0044.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0045.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0046.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0047.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0048.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0049.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0050.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0051.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0052.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0053.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0054.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0055.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0056.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0057.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0058.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0059.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0060.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0061.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0062.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0063.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0064.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0065.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0066.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0067.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0068.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0069.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0070.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0071.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0072.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0073.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0074.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0075.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0076.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0077.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0078.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0079.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0080.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0081.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0082.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0083.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0084.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0085.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0086.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0087.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0088.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0089.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0090.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0091.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0092.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0093.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0094.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0095.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0096.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0097.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0098.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0099.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0100.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0101.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0102.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0103.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0104.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0105.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0106.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0107.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0108.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0109.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0110.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0111.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0112.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0113.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0114.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0115.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0116.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0117.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0118.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/alien_dance/alien_dance-0119.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/AceTaffy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/AceTaffy.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/AkiyamaMio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/AkiyamaMio.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/AwaSubaru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/AwaSubaru.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/AzumaSeren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/AzumaSeren.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/EbizukaTomo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/EbizukaTomo.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/HitoriGotoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/HitoriGotoh.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/IjichiNijika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/IjichiNijika.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/InoeTakina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/InoeTakina.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/IseriNina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/IseriNina.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/KawaragiMomoka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/KawaragiMomoka.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/KitaIkuyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/KitaIkuyo.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/LycorisPartner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/LycorisPartner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/MashiroKanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/MashiroKanon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/NakanoAzusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/NakanoAzusa.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/NishikigiChisato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/NishikigiChisato.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/NishikigiChisato2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/NishikigiChisato2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/Rupa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/Rupa.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/YamadaRyō.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/YamadaRyō.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/background/minghuishield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/background/minghuishield.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/be_by.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/be_by.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/en_us.lang -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/es_es.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/et_ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/et_ee.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/it_it.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/ja_jp.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/ko_kr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/pl_pl.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/pt_br.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/ru_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/tt_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/tt_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/uk_ua.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/vi_vn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/vi_vn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/zh_cn.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/zh_cn.lang -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/lang/zh_tw.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/libraries/imgui-java64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/libraries/imgui-java64.dll -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/libraries/libimgui-java64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/libraries/libimgui-java64.dylib -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/libraries/libimgui-java64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/libraries/libimgui-java64.so -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/libraries/nullhack-native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/libraries/nullhack-native.dll -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/disable.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/disable.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/enable.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/enable.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/init_morning.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/init_morning.wav -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/init_night.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/init_night.wav -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/keypress.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/keypress.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/keyrelease.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/keyrelease.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/moan1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/moan1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/moan2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/moan2.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/moan3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/moan3.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/moan4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/moan4.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/orthodox.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/orthodox.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/skeet.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/skeet.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/nullhack/sounds/uwu.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/nullhack/sounds/uwu.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/background/connectedParticles.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/background/connectedParticles.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/background/connectedParticlesChannel0.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/background/connectedParticlesChannel0.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/background/igniteParticles.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/background/igniteParticles.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/background/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/background/noise.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/background/nopVertex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/background/nopVertex.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/effect/MotionBlur.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/effect/MotionBlur.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/effect/MotionBlur.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/effect/MotionBlur.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/effect/outline.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/effect/outline.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/effect/outline.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/effect/outline.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Blit.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Blit.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Blit.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Blit.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Blur.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Blur.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/BlurH.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/BlurH.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/BlurMS.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/BlurMS.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/BlurV.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/BlurV.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos2fColor.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos2fColor.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos2fColor.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos2fColor.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos2fColorTex.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos2fColorTex.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos2fColorTex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos2fColorTex.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos2fColorTexArray.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos2fColorTexArray.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos2fColorTexArray.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos2fColorTexArray.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fColor.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fColor.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fColor.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fColor.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fColorTex.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fColorTex.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fColorTex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fColorTex.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fTex.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fTex.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fTex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fTex.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fTexNV12.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fTexNV12.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fTexNV12.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fTexNV12.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fTexYUV.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fTexYUV.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Pos3fTexYUV.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Pos3fTexYUV.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/Renderer.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/Renderer.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/StaticBoxRenderer.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/StaticBoxRenderer.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/StaticTracerRenderer.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/StaticTracerRenderer.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/UniversalDraw.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/UniversalDraw.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/general/UniversalDraw.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/general/UniversalDraw.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/lighting/test.fsh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/lighting/test.vsh: -------------------------------------------------------------------------------- 1 | #version 450 core 2 | 3 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/model/MeshDNSH.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/model/MeshDNSH.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/model/MeshVertex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/model/MeshVertex.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/port/SparseTextureArrayFontRenderer.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/port/SparseTextureArrayFontRenderer.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/port/SparseTextureArrayFontRenderer.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/port/SparseTextureArrayFontRenderer.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/sandbox/DefaultVertex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/sandbox/DefaultVertex.vsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/shader/sandbox/Nebula.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/assets/shader/sandbox/Nebula.fsh -------------------------------------------------------------------------------- /common/src/main/resources/nullhack.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/nullhack.accesswidener -------------------------------------------------------------------------------- /common/src/main/resources/nullhack.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/common/src/main/resources/nullhack.mixins.json -------------------------------------------------------------------------------- /fabric/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/fabric/build.gradle.kts -------------------------------------------------------------------------------- /fabric/src/main/kotlin/love/xiguajerry/nullhack/fabric/FabricPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/fabric/src/main/kotlin/love/xiguajerry/nullhack/fabric/FabricPlatform.kt -------------------------------------------------------------------------------- /fabric/src/main/kotlin/love/xiguajerry/nullhack/fabric/NullHackMod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/fabric/src/main/kotlin/love/xiguajerry/nullhack/fabric/NullHackMod.kt -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /fabric/src/main/resources/nullhack.fabric.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/fabric/src/main/resources/nullhack.fabric.mixins.json -------------------------------------------------------------------------------- /forge/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/forge/build.gradle.kts -------------------------------------------------------------------------------- /forge/src/main/java/love/xiguajerry/nullhack/mixins/gui/screen/MixinSearchManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/forge/src/main/java/love/xiguajerry/nullhack/mixins/gui/screen/MixinSearchManager.java -------------------------------------------------------------------------------- /forge/src/main/kotlin/love/xiguajerry/nullhack/forge/ForgePlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/forge/src/main/kotlin/love/xiguajerry/nullhack/forge/ForgePlatform.kt -------------------------------------------------------------------------------- /forge/src/main/kotlin/love/xiguajerry/nullhack/forge/NullHackMod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/forge/src/main/kotlin/love/xiguajerry/nullhack/forge/NullHackMod.kt -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/src/main/resources/nullhack.forge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/forge/src/main/resources/nullhack.forge.mixins.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/gradlew.bat -------------------------------------------------------------------------------- /neoforge/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/neoforge/build.gradle.kts -------------------------------------------------------------------------------- /neoforge/src/main/kotlin/love/xiguajerry/nullhack/neoforge/NeoforgePlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/neoforge/src/main/kotlin/love/xiguajerry/nullhack/neoforge/NeoforgePlatform.kt -------------------------------------------------------------------------------- /neoforge/src/main/kotlin/love/xiguajerry/nullhack/neoforge/NullHackMod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/neoforge/src/main/kotlin/love/xiguajerry/nullhack/neoforge/NullHackMod.kt -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/nullhack.neoforge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/neoforge/src/main/resources/nullhack.neoforge.mixins.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/screenshot.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiguajerry/NullHack/HEAD/settings.gradle.kts --------------------------------------------------------------------------------