├── .github └── workflows │ └── buildJar.yml ├── .gitignore ├── LICENSE ├── README.md ├── Version.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── SkinsRestorer.jar └── TrMenu-3.0-RC-2.jar ├── settings.gradle.kts └── src └── main ├── kotlin └── me │ └── arasple │ └── mc │ └── trhologram │ ├── TrHologram.kt │ ├── api │ ├── InstantVector.kt │ ├── Position.kt │ ├── Settings.kt │ ├── TrHologramAPI.kt │ ├── base │ │ ├── BaseCondition.kt │ │ ├── ClickHandler.kt │ │ ├── ItemTexture.kt │ │ └── TickEvent.kt │ ├── event │ │ └── HologramInteractEvent.kt │ ├── hologram │ │ ├── HologramBuilder.kt │ │ ├── HologramComponent.kt │ │ ├── ItemHologram.kt │ │ └── TextHologram.kt │ └── nms │ │ ├── NMS.kt │ │ ├── NMSImpl.kt │ │ ├── NMSListener.kt │ │ └── packet │ │ ├── PacketArmorStandModify.kt │ │ ├── PacketArmorStandName.kt │ │ ├── PacketEntity.kt │ │ ├── PacketEntityDestroy.kt │ │ ├── PacketEntityMount.kt │ │ ├── PacketEntitySpawn.kt │ │ ├── PacketEntityVelocity.kt │ │ ├── PacketEquipment.kt │ │ ├── PacketHeadRotation.kt │ │ └── PacketItemModify.kt │ ├── module │ ├── action │ │ ├── ClickReaction.kt │ │ └── Reaction.kt │ ├── command │ │ ├── CommandExecutor.kt │ │ ├── CommandHandler.kt │ │ └── impl │ │ │ ├── CommandCreate.kt │ │ │ ├── CommandDelete.kt │ │ │ ├── CommandList.kt │ │ │ ├── CommandMirror.kt │ │ │ ├── CommandMovehere.kt │ │ │ ├── CommandReload.kt │ │ │ └── CommandTeleport.kt │ ├── condition │ │ └── Condition.kt │ ├── conf │ │ ├── HologramLoader.kt │ │ └── Property.kt │ ├── display │ │ ├── Hologram.kt │ │ └── texture │ │ │ ├── Texture.kt │ │ │ ├── TextureMeta.kt │ │ │ ├── TextureType.kt │ │ │ └── TrMenuTexture.kt │ ├── editor │ │ └── Editor.kt │ ├── hook │ │ ├── HookAbstract.kt │ │ ├── HookPlugin.kt │ │ └── impl │ │ │ ├── HookSkinsRestorer.kt │ │ │ └── HookTrMenu.kt │ ├── listener │ │ ├── ListenerHologramInteract.kt │ │ ├── ListenerJoin.kt │ │ ├── ListenerMovement.kt │ │ ├── ListenerQuit.kt │ │ ├── ListenerRespawn.kt │ │ └── ListenerWorldChange.kt │ └── service │ │ ├── Metrics.kt │ │ └── Updater.kt │ └── util │ ├── Heads.kt │ ├── ItemHelper.kt │ ├── Parser.kt │ └── Variables.kt └── resources ├── holograms └── Demo.yml ├── lang ├── RU_ru.yml ├── en_US.yml └── zh_CN.yml └── settings.yml /.github/workflows/buildJar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/.github/workflows/buildJar.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/README.md -------------------------------------------------------------------------------- /Version.txt: -------------------------------------------------------------------------------- 1 | 2.4-pre25 -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/SkinsRestorer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/libs/SkinsRestorer.jar -------------------------------------------------------------------------------- /libs/TrMenu-3.0-RC-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/libs/TrMenu-3.0-RC-2.jar -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "TrHologram" 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/TrHologram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/TrHologram.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/InstantVector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/InstantVector.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/Position.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/Position.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/Settings.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/TrHologramAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/TrHologramAPI.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/base/BaseCondition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/base/BaseCondition.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/base/ClickHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/base/ClickHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/base/ItemTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/base/ItemTexture.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/base/TickEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/base/TickEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/event/HologramInteractEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/event/HologramInteractEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/hologram/HologramBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/hologram/HologramBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/hologram/HologramComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/hologram/HologramComponent.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/hologram/ItemHologram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/hologram/ItemHologram.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/hologram/TextHologram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/hologram/TextHologram.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/NMS.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/NMS.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/NMSImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/NMSImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/NMSListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/NMSListener.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketArmorStandModify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketArmorStandModify.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketArmorStandName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketArmorStandName.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntityDestroy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntityDestroy.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntityMount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntityMount.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntitySpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntitySpawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntityVelocity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEntityVelocity.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEquipment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketEquipment.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketHeadRotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketHeadRotation.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketItemModify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/api/nms/packet/PacketItemModify.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/action/ClickReaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/action/ClickReaction.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/action/Reaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/action/Reaction.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/CommandExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/CommandExecutor.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/CommandHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/CommandHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandCreate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandCreate.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandDelete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandDelete.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandList.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandMirror.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandMirror.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandMovehere.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandMovehere.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandReload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandReload.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandTeleport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/command/impl/CommandTeleport.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/condition/Condition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/condition/Condition.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/conf/HologramLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/conf/HologramLoader.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/conf/Property.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/conf/Property.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/display/Hologram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/display/Hologram.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/Texture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/Texture.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/TextureMeta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/TextureMeta.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/TextureType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/TextureType.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/TrMenuTexture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/display/texture/TrMenuTexture.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/editor/Editor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/editor/Editor.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/hook/HookAbstract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/hook/HookAbstract.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/hook/HookPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/hook/HookPlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/hook/impl/HookSkinsRestorer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/hook/impl/HookSkinsRestorer.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/hook/impl/HookTrMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/hook/impl/HookTrMenu.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerHologramInteract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerHologramInteract.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerJoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerJoin.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerMovement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerMovement.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerQuit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerQuit.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerRespawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerRespawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerWorldChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/listener/ListenerWorldChange.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/service/Metrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/service/Metrics.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/module/service/Updater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/module/service/Updater.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/util/Heads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/util/Heads.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/util/ItemHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/util/ItemHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/util/Parser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/util/Parser.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/arasple/mc/trhologram/util/Variables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/kotlin/me/arasple/mc/trhologram/util/Variables.kt -------------------------------------------------------------------------------- /src/main/resources/holograms/Demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/resources/holograms/Demo.yml -------------------------------------------------------------------------------- /src/main/resources/lang/RU_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/resources/lang/RU_ru.yml -------------------------------------------------------------------------------- /src/main/resources/lang/en_US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/resources/lang/en_US.yml -------------------------------------------------------------------------------- /src/main/resources/lang/zh_CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/resources/lang/zh_CN.yml -------------------------------------------------------------------------------- /src/main/resources/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Micalhl/TrHologram/HEAD/src/main/resources/settings.yml --------------------------------------------------------------------------------