This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.layercraft.packetlib.utils.bytebuffer | |
| import io.layercraft.packetlib.serialization.MinecraftProtocolDeserializeInterface | |
| import java.nio.ByteBuffer | |
| class MinecraftByteBufferDeserialize(override val input: ByteBuffer) : MinecraftProtocolDeserializeInterface<ByteBuffer> { | |
| override val remaining: Int | |
| get() = input.remaining() | |
| override fun readByte(): Byte = input.get() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 | General Admission | |
| 2 | VIP | |
| 3 | General Admission | |
| 4 | Early Bird General Admission | |
| 5 | General Admission | |
| 6 | General Admission Ticket | |
| 7 | VIP Ticket | |
| 8 | General Admission Ticket | |
| 9 | VIP Ticket | |
| 10 | General Admission |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [tools] | |
| rojo = { source = "rojo-rbx/rojo", version = "7" } | |
| remodel = { source = "rojo-rbx/remodel", version = "0.9.1" } | |
| selene = { source = "Kampfkarren/selene", version = "0.17.0" } | |
| stylua = { source = "JohnnyMorganz/stylua", version = "0.13.1" } | |
| wally = { source = "UpliftGames/wally", version = "0.3.1" } |