├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.md ├── MCServerSharp.AnvilStorage ├── AnvilRegionReader.cs ├── ChunkLocation.cs └── MCServerSharp.AnvilStorage.csproj ├── MCServerSharp.Base ├── ArgumentEmptyException.cs ├── ArgumentGuard.cs ├── Collections │ ├── ArrayEnumerable.cs │ ├── ArrayExtensions.cs │ ├── BitSet.cs │ ├── ByteStack.cs │ ├── CachedReadOnlyList.cs │ ├── CachedReadOnlySet.cs │ ├── CollectionHelper.cs │ ├── DictionaryExtensions.cs │ ├── Enumerable.SelectWhere.cs │ ├── ListExtensions.cs │ ├── Long │ │ ├── CollectionExceptions.cs │ │ ├── ILongEqualityComparer.cs │ │ ├── ILongHashable.cs │ │ ├── LongDictionary.Enumerator.cs │ │ ├── LongDictionary.KeyCollection.cs │ │ ├── LongDictionary.ValueCollection.cs │ │ ├── LongDictionary.cs │ │ ├── LongDiffusedEqualityComparer.cs │ │ ├── LongEnumComparer.cs │ │ ├── LongEqualityComparer.Decimal.cs │ │ ├── LongEqualityComparer.Double.cs │ │ ├── LongEqualityComparer.IntPtr.cs │ │ ├── LongEqualityComparer.Long.cs │ │ ├── LongEqualityComparer.cs │ │ ├── LongEqualityComparerHelper.cs │ │ ├── LongGenericComparer.cs │ │ ├── LongHashHelpers.cs │ │ ├── LongHashSet.BitHelper.cs │ │ ├── LongHashSet.Enumerator.cs │ │ ├── LongHashSet.cs │ │ ├── LongHashSetComparer.cs │ │ ├── LongHashableComparer.cs │ │ ├── LongInsertionBehavior.cs │ │ ├── LongNullableComparer.cs │ │ ├── LongROMCharComparer.cs │ │ ├── LongStringComparer.cs │ │ ├── LongUtf8MemoryComparer.cs │ │ ├── LongUtf8StringComparer.cs │ │ ├── NonRandomLongROMCharComparer.cs │ │ ├── NonRandomLongStringComparer.cs │ │ ├── NonRandomLongUtf8MemoryComparer.cs │ │ └── NonRandomLongUtf8StringComparer.cs │ ├── ReadOnlyConcurrentDictionary.cs │ ├── ReadOnlyDictionary.cs │ ├── ReadOnlyList.cs │ ├── ReadOnlySet.cs │ └── SetExtensions.cs ├── Components │ ├── Component.cs │ ├── ComponentCollection.cs │ ├── ComponentEntity.cs │ ├── ComponentEntityExtensions.cs │ └── IComponentEntity.cs ├── Data │ ├── AssemblyResourceProvider.cs │ ├── FallbackResourceProvider.cs │ ├── FileResourceProvider.cs │ └── Types │ │ ├── Angle.cs │ │ ├── Chat.cs │ │ ├── DegreeLook.cs │ │ ├── EntityId.cs │ │ ├── IIdentifier.cs │ │ ├── Identifier.cs │ │ ├── Look.cs │ │ ├── MCSnapshotVersion.cs │ │ ├── MCVersion.cs │ │ ├── Position.cs │ │ ├── StringHelper.cs │ │ ├── UUID.cs │ │ ├── Utf8Identifier.cs │ │ ├── VarInt.cs │ │ └── VarLong.cs ├── DataTypeKey.cs ├── Enums │ ├── Axis.cs │ ├── BambooLeavesType.cs │ ├── BedPartType.cs │ ├── ChestType.cs │ ├── ComparatorMode.cs │ ├── DoubleFlowerType.cs │ ├── DownFaceDirection.cs │ ├── DustConnection.cs │ ├── EnumDataName.cs │ ├── FaceDirection.cs │ ├── FaceType.cs │ ├── FacingDirection.cs │ ├── HorizontalAxis.cs │ ├── NoteInstrument.cs │ ├── Orientation.cs │ ├── PistonType.cs │ ├── RailShape.cs │ ├── RestrictedRailShape.cs │ ├── SculkSensorPhase.cs │ ├── Side.cs │ ├── SlabType.cs │ ├── SpecificFaceType.cs │ ├── StairHalf.cs │ ├── StairShape.cs │ ├── StructureBlockMode.cs │ ├── TallGrassHalf.cs │ ├── TallGrassType.cs │ ├── Thickness.cs │ ├── Tilt.cs │ ├── VerticalDirection.cs │ └── WallExtension.cs ├── GameTimeComponent.cs ├── HexUtility.cs ├── IO │ ├── Compression │ │ ├── Adler32.cs │ │ ├── ZlibHeader.cs │ │ └── ZlibStream.cs │ ├── INetBinaryReader.cs │ ├── INetBinaryWriter.cs │ ├── NetBinaryOptions.cs │ ├── NetBinaryReader.cs │ ├── NetBinaryReaderExtensions.cs │ ├── NetBinaryWriter.cs │ └── NetBinaryWriterExtensions.cs ├── ISeekable.cs ├── ITickable.cs ├── LongHashCode.cs ├── MCServerSharp.Base.csproj ├── MarvinHash64.cs ├── Maths │ ├── BlockPosition.cs │ ├── ChunkColumnPosition.cs │ ├── ChunkPosition.cs │ ├── ChunkRegionPosition.cs │ ├── MathHelper.cs │ └── Vector3d.cs ├── Memory │ ├── ArrayPoolExtensions.cs │ ├── BitArray32.BatchCopy.cs │ ├── BitArray32.cs │ ├── ChunkedMemoryStream.cs │ ├── MemoryEnumerable.cs │ ├── MemoryExtensions.cs │ ├── ReadOnlySpanSplitter.cs │ ├── RecyclableMemoryManager.Events.cs │ └── RecyclableMemoryManager.cs ├── Text │ ├── EncodingExtensions.cs │ ├── ReadOnlyMemoryCharComparer.cs │ ├── ReadOnlyMemoryCharExtensions.cs │ ├── RuneEnumerator.cs │ ├── RuneEnumeratorExtensions.cs │ ├── StringSnakeExtensions.cs │ ├── Utf16Enumerator.cs │ ├── Utf16EnumeratorExtensions.cs │ ├── Utf16Splitter.cs │ ├── Utf8Enumerator.cs │ ├── Utf8EnumeratorExtensions.cs │ ├── Utf8RuneEnumerator.cs │ ├── Utf8RuneEnumeratorExtensions.cs │ └── Utf8String │ │ ├── Utf8Memory.Split.cs │ │ ├── Utf8Memory.cs │ │ ├── Utf8Splitter.cs │ │ ├── Utf8String.Split.cs │ │ ├── Utf8String.cs │ │ └── Utf8StringExtensions.cs ├── Ticker.cs └── Utility │ ├── EnumConverter.cs │ ├── EnumFlagsExtensions.cs │ ├── EnumVarIntExtensions.cs │ ├── EnumerableExtensions.cs │ ├── IElementContainer.cs │ ├── IMemory.cs │ ├── IReadOnlyMemory.cs │ ├── IResourceProvider.cs │ ├── IResourceProviderExtensions.cs │ ├── MemoryExtensions.cs │ ├── MethodInfoExtensions.cs │ ├── ReflectionExtensions.cs │ ├── ReflectionHelper.cs │ ├── StreamExtensions.cs │ ├── TaskExtensions.cs │ ├── UnitConvert.cs │ ├── UnmanagedMemory.cs │ ├── UnsafeR.cs │ └── VarIntExtensions.cs ├── MCServerSharp.NBT ├── Exceptions │ ├── NbtDepthException.cs │ ├── NbtException.cs │ └── NbtReadException.cs ├── MCServerSharp.NBT.csproj ├── NbtDocument.DbRow.cs ├── NbtDocument.MetadataDb.Accessor.cs ├── NbtDocument.MetadataDb.cs ├── NbtDocument.Parse.cs ├── NbtDocument.cs ├── NbtElement.ArrayEnumerator.cs ├── NbtElement.ContainerEnumerator.cs ├── NbtElement.cs ├── NbtFlags.cs ├── NbtOptions.cs ├── NbtReadStatus.cs ├── NbtReader.cs ├── NbtReaderState.cs ├── NbtType.cs ├── NbtTypeExtensions.cs ├── NbtWriter.cs ├── NetBinaryReaderNbtExtensions.cs ├── NetBinaryWriterNbtExtensions.cs └── Tags │ ├── INbtArray.cs │ ├── INbtMutArray.cs │ ├── NbTag.cs │ ├── NbTagExtensions.cs │ ├── NbtByte.cs │ ├── NbtByteArray.cs │ ├── NbtCompound.cs │ ├── NbtDouble.cs │ ├── NbtEnd.cs │ ├── NbtFloat.cs │ ├── NbtInt.cs │ ├── NbtIntArray.cs │ ├── NbtList.cs │ ├── NbtLong.cs │ ├── NbtLongArray.cs │ ├── NbtShort.cs │ └── NbtString.cs ├── MCServerSharp.Net.SourceGen ├── AttributedStructSyntaxReceiver.cs ├── ClientboundPacketGenerator.cs ├── MCServerSharp.Net.SourceGen.csproj └── ProtocolGenerator.cs ├── MCServerSharp.Net ├── ClientSettingsComponent.cs ├── ConnectionComponentExtensions.cs ├── Data │ ├── ActionId.cs │ ├── ClickMode.cs │ ├── DiggingStatus.cs │ ├── HandId.cs │ ├── IO │ │ ├── NetBinaryReaderTypeExtensions.cs │ │ └── NetBinaryWriterTypeExtensions.cs │ ├── PlayerAbilityFlags.cs │ ├── RecipeBookId.cs │ └── Slot.cs ├── Exceptions │ ├── NetException.cs │ └── NetUnknownPacketException.cs ├── MCServerSharp.Net.csproj ├── NetConnection.cs ├── NetConnectionComponent.cs ├── NetListener.cs ├── NetManager.cs ├── NetOrchestrator.cs ├── NetOrchestratorWorker.cs ├── NetPacketCodec.cs ├── NetPacketSendQueue.cs ├── NetSendState.cs ├── PacketHolder.cs ├── PacketHolderPool.cs ├── PacketWriteResult.cs ├── Packets │ ├── Attributes │ │ ├── DataEnumerableAttribute.cs │ │ ├── DataLengthConstraintAttribute.cs │ │ ├── DataObjectAttribute.cs │ │ ├── DataPropertyAttribute.cs │ │ ├── DataSerializeMode.cs │ │ ├── LengthPrefixedAttribute.cs │ │ ├── LengthSource.cs │ │ ├── PacketConstructorAttribute.cs │ │ ├── PacketIdMappingAttribute.cs │ │ ├── PacketStructAttribute.cs │ │ └── PacketSwitchCaseAttribute.cs │ ├── Client │ │ ├── ClientAnimation.cs │ │ ├── ClientChat.cs │ │ ├── ClientClickWindow.cs │ │ ├── ClientCloseWindow.cs │ │ ├── ClientCreativeInventoryAction.cs │ │ ├── ClientEntityAction.cs │ │ ├── ClientHandshake.cs │ │ ├── ClientHeldItemChange.cs │ │ ├── ClientKeepAlive.cs │ │ ├── ClientLegacyServerListPing.cs │ │ ├── ClientLoginStart.cs │ │ ├── ClientPacketId.cs │ │ ├── ClientPing.cs │ │ ├── ClientPlayerAbilities.cs │ │ ├── ClientPlayerBlockPlacement.cs │ │ ├── ClientPlayerDigging.cs │ │ ├── ClientPlayerMovement.cs │ │ ├── ClientPlayerPosition.cs │ │ ├── ClientPlayerPositionRotation.cs │ │ ├── ClientPlayerRotation.cs │ │ ├── ClientPluginMessage.cs │ │ ├── ClientRequest.cs │ │ ├── ClientSetDisplayedRecipe.cs │ │ ├── ClientSetRecipeBookState.cs │ │ ├── ClientSettings.cs │ │ ├── ClientTeleportConfirm.cs │ │ └── ClientUseItem.cs │ ├── IDataWritable.cs │ ├── NetPacketCoder.PacketIdDefinition.cs │ ├── NetPacketCoder.PacketIdMappingInfo.cs │ ├── NetPacketCoder.cs │ ├── NetPacketDecoder.PacketConstructorInfo.cs │ ├── NetPacketDecoder.cs │ ├── NetPacketEncoder.DataPropertyInfo.cs │ ├── NetPacketEncoder.cs │ ├── PacketStructInfo.cs │ ├── ProtocolState.cs │ └── Server │ │ ├── ServerChat.cs │ │ ├── ServerChunkData.cs │ │ ├── ServerEntityRotation.cs │ │ ├── ServerEntityTeleport.cs │ │ ├── ServerJoinGame.cs │ │ ├── ServerKeepAlive.cs │ │ ├── ServerLegacyServerListPong.cs │ │ ├── ServerLoginDisconnect.cs │ │ ├── ServerLoginSuccess.cs │ │ ├── ServerOpenWindow.cs │ │ ├── ServerPacketId.cs │ │ ├── ServerPlayDisconnect.cs │ │ ├── ServerPlayerAbilities.cs │ │ ├── ServerPlayerPositionLook.cs │ │ ├── ServerPluginMessage.cs │ │ ├── ServerPong.cs │ │ ├── ServerResponse.cs │ │ ├── ServerSetCompression.cs │ │ ├── ServerSpawnLivingEntity.cs │ │ ├── ServerSpawnPosition.cs │ │ ├── ServerUnloadChunk.cs │ │ ├── ServerUpdateLight.cs │ │ ├── ServerUpdateTags.cs │ │ ├── ServerUpdateViewDistance.cs │ │ ├── ServerUpdateViewPosition.cs │ │ └── ServerWindowProperty.cs └── StringEnumAttribute.cs ├── MCServerSharp.Server ├── MCServerSharp.Server.csproj ├── ServerMain.cs └── Templates │ └── Config │ └── Minecraft │ └── Net │ └── Pong.json ├── MCServerSharp.World ├── Blocks │ ├── BlockDescription.cs │ ├── BlockState.cs │ ├── BooleanStateProperty.cs │ ├── DirectBlockPalette.cs │ ├── DirectionStateProperty.cs │ ├── EnumStateProperty.cs │ ├── IBlockPalette.cs │ ├── IStateProperty.cs │ ├── IStateProperty{T}.cs │ ├── IndirectBlockPalette.cs │ ├── IntegerStateProperty.cs │ ├── JavaCompatibleBlockPalette.cs │ ├── StateProperty.cs │ ├── StatePropertyExtensions.cs │ ├── StatePropertyValue.cs │ └── StatePropertyValue{T}.cs ├── Entity │ ├── Entity.cs │ └── Mob │ │ ├── Mob.cs │ │ ├── Player.cs │ │ ├── PlayerComponent.cs │ │ └── PlayerComponentExtensions.cs ├── FastNoiseLite.cs ├── MCServerSharp.World.csproj ├── Old │ ├── SocketAwaitable.cs │ └── SocketExtensions.cs └── World │ ├── ChunkColumnManager.cs │ ├── ChunkCommandList.cs │ ├── ChunkCommandListExtensions.cs │ ├── ChunkStatus.cs │ ├── Dimension.cs │ ├── DimensionComponent.cs │ ├── IBlockEnumerator.cs │ ├── IChunk.cs │ ├── IChunkColumn.cs │ ├── IChunkColumnProvider.cs │ ├── IChunkProvider.cs │ ├── IChunkRegion.cs │ ├── LocalChunk.BlockEnumerator.cs │ ├── LocalChunk.cs │ ├── LocalChunkColumn.cs │ ├── LocalChunkColumnProvider.cs │ ├── LocalChunkProvider.cs │ └── LocalChunkRegion.cs ├── MCServerSharp.sln ├── README.md ├── Sandbox ├── Sandbox.cs └── Sandbox.csproj ├── Tests ├── Tests.cs └── Tests.csproj └── icon.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MCServerSharp.AnvilStorage/AnvilRegionReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.AnvilStorage/AnvilRegionReader.cs -------------------------------------------------------------------------------- /MCServerSharp.AnvilStorage/ChunkLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.AnvilStorage/ChunkLocation.cs -------------------------------------------------------------------------------- /MCServerSharp.AnvilStorage/MCServerSharp.AnvilStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.AnvilStorage/MCServerSharp.AnvilStorage.csproj -------------------------------------------------------------------------------- /MCServerSharp.Base/ArgumentEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/ArgumentEmptyException.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/ArgumentGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/ArgumentGuard.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ArrayEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ArrayEnumerable.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ArrayExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/BitSet.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ByteStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ByteStack.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/CachedReadOnlyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/CachedReadOnlyList.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/CachedReadOnlySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/CachedReadOnlySet.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/CollectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/CollectionHelper.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/DictionaryExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Enumerable.SelectWhere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Enumerable.SelectWhere.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ListExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/CollectionExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/CollectionExceptions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/ILongEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/ILongEqualityComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/ILongHashable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/ILongHashable.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongDictionary.Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongDictionary.Enumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongDictionary.KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongDictionary.KeyCollection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongDictionary.ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongDictionary.ValueCollection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongDictionary.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongDiffusedEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongDiffusedEqualityComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEnumComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEnumComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEqualityComparer.Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEqualityComparer.Decimal.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEqualityComparer.Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEqualityComparer.Double.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEqualityComparer.IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEqualityComparer.IntPtr.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEqualityComparer.Long.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEqualityComparer.Long.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEqualityComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongEqualityComparerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongEqualityComparerHelper.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongGenericComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongGenericComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongHashHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongHashHelpers.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongHashSet.BitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongHashSet.BitHelper.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongHashSet.Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongHashSet.Enumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongHashSet.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongHashSetComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongHashSetComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongHashableComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongHashableComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongInsertionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongInsertionBehavior.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongNullableComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongNullableComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongROMCharComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongROMCharComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongStringComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongUtf8MemoryComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongUtf8MemoryComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/LongUtf8StringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/LongUtf8StringComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/NonRandomLongROMCharComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/NonRandomLongROMCharComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/NonRandomLongStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/NonRandomLongStringComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/NonRandomLongUtf8MemoryComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/NonRandomLongUtf8MemoryComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/Long/NonRandomLongUtf8StringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/Long/NonRandomLongUtf8StringComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ReadOnlyConcurrentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ReadOnlyConcurrentDictionary.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ReadOnlyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ReadOnlyDictionary.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ReadOnlyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ReadOnlyList.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/ReadOnlySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/ReadOnlySet.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Collections/SetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Collections/SetExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Components/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Components/Component.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Components/ComponentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Components/ComponentCollection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Components/ComponentEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Components/ComponentEntity.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Components/ComponentEntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Components/ComponentEntityExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Components/IComponentEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Components/IComponentEntity.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/AssemblyResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/AssemblyResourceProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/FallbackResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/FallbackResourceProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/FileResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/FileResourceProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/Angle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/Angle.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/Chat.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/DegreeLook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/DegreeLook.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/EntityId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/EntityId.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/IIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/IIdentifier.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/Identifier.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/Look.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/Look.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/MCSnapshotVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/MCSnapshotVersion.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/MCVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/MCVersion.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/Position.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/StringHelper.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/UUID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/UUID.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/Utf8Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/Utf8Identifier.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/VarInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/VarInt.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Data/Types/VarLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Data/Types/VarLong.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/DataTypeKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/DataTypeKey.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/Axis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/Axis.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/BambooLeavesType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/BambooLeavesType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/BedPartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/BedPartType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/ChestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/ChestType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/ComparatorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/ComparatorMode.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/DoubleFlowerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/DoubleFlowerType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/DownFaceDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/DownFaceDirection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/DustConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/DustConnection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/EnumDataName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/EnumDataName.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/FaceDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/FaceDirection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/FaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/FaceType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/FacingDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/FacingDirection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/HorizontalAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/HorizontalAxis.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/NoteInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/NoteInstrument.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/Orientation.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/PistonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/PistonType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/RailShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/RailShape.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/RestrictedRailShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/RestrictedRailShape.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/SculkSensorPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/SculkSensorPhase.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/Side.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/Side.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/SlabType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/SlabType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/SpecificFaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/SpecificFaceType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/StairHalf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/StairHalf.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/StairShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/StairShape.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/StructureBlockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/StructureBlockMode.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/TallGrassHalf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/TallGrassHalf.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/TallGrassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/TallGrassType.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/Thickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/Thickness.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/Tilt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/Tilt.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/VerticalDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/VerticalDirection.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Enums/WallExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Enums/WallExtension.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/GameTimeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/GameTimeComponent.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/HexUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/HexUtility.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/Compression/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/Compression/Adler32.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/Compression/ZlibHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/Compression/ZlibHeader.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/Compression/ZlibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/Compression/ZlibStream.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/INetBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/INetBinaryReader.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/INetBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/INetBinaryWriter.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/NetBinaryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/NetBinaryOptions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/NetBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/NetBinaryReader.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/NetBinaryReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/NetBinaryReaderExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/NetBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/NetBinaryWriter.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/IO/NetBinaryWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/IO/NetBinaryWriterExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/ISeekable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/ISeekable.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/ITickable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/ITickable.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/LongHashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/LongHashCode.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/MCServerSharp.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/MCServerSharp.Base.csproj -------------------------------------------------------------------------------- /MCServerSharp.Base/MarvinHash64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/MarvinHash64.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Maths/BlockPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Maths/BlockPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Maths/ChunkColumnPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Maths/ChunkColumnPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Maths/ChunkPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Maths/ChunkPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Maths/ChunkRegionPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Maths/ChunkRegionPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Maths/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Maths/MathHelper.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Maths/Vector3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Maths/Vector3d.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/ArrayPoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/ArrayPoolExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/BitArray32.BatchCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/BitArray32.BatchCopy.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/BitArray32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/BitArray32.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/ChunkedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/ChunkedMemoryStream.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/MemoryEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/MemoryEnumerable.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/MemoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/MemoryExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/ReadOnlySpanSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/ReadOnlySpanSplitter.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/RecyclableMemoryManager.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/RecyclableMemoryManager.Events.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Memory/RecyclableMemoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Memory/RecyclableMemoryManager.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/EncodingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/EncodingExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/ReadOnlyMemoryCharComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/ReadOnlyMemoryCharComparer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/ReadOnlyMemoryCharExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/ReadOnlyMemoryCharExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/RuneEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/RuneEnumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/RuneEnumeratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/RuneEnumeratorExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/StringSnakeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/StringSnakeExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf16Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf16Enumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf16EnumeratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf16EnumeratorExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf16Splitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf16Splitter.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8Enumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8EnumeratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8EnumeratorExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8RuneEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8RuneEnumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8RuneEnumeratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8RuneEnumeratorExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8String/Utf8Memory.Split.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8String/Utf8Memory.Split.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8String/Utf8Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8String/Utf8Memory.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8String/Utf8Splitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8String/Utf8Splitter.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8String/Utf8String.Split.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8String/Utf8String.Split.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8String/Utf8String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8String/Utf8String.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Text/Utf8String/Utf8StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Text/Utf8String/Utf8StringExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Ticker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Ticker.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/EnumConverter.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/EnumFlagsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/EnumFlagsExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/EnumVarIntExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/EnumVarIntExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/EnumerableExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/IElementContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/IElementContainer.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/IMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/IMemory.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/IReadOnlyMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/IReadOnlyMemory.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/IResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/IResourceProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/IResourceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/IResourceProviderExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/MemoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/MemoryExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/MethodInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/MethodInfoExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/ReflectionExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/ReflectionHelper.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/StreamExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/TaskExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/UnitConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/UnitConvert.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/UnmanagedMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/UnmanagedMemory.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/UnsafeR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/UnsafeR.cs -------------------------------------------------------------------------------- /MCServerSharp.Base/Utility/VarIntExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Base/Utility/VarIntExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Exceptions/NbtDepthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Exceptions/NbtDepthException.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Exceptions/NbtException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Exceptions/NbtException.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Exceptions/NbtReadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Exceptions/NbtReadException.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/MCServerSharp.NBT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/MCServerSharp.NBT.csproj -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtDocument.DbRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtDocument.DbRow.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtDocument.MetadataDb.Accessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtDocument.MetadataDb.Accessor.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtDocument.MetadataDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtDocument.MetadataDb.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtDocument.Parse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtDocument.Parse.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtDocument.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtElement.ArrayEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtElement.ArrayEnumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtElement.ContainerEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtElement.ContainerEnumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtElement.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtFlags.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtOptions.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtReadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtReadStatus.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtReader.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtReaderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtReaderState.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtType.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtTypeExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NbtWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NbtWriter.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NetBinaryReaderNbtExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NetBinaryReaderNbtExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/NetBinaryWriterNbtExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/NetBinaryWriterNbtExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/INbtArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/INbtArray.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/INbtMutArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/INbtMutArray.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbTag.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbTagExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbTagExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtByte.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtByteArray.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtCompound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtCompound.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtDouble.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtEnd.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtFloat.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtInt.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtIntArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtIntArray.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtList.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtLong.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtLongArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtLongArray.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtShort.cs -------------------------------------------------------------------------------- /MCServerSharp.NBT/Tags/NbtString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.NBT/Tags/NbtString.cs -------------------------------------------------------------------------------- /MCServerSharp.Net.SourceGen/AttributedStructSyntaxReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net.SourceGen/AttributedStructSyntaxReceiver.cs -------------------------------------------------------------------------------- /MCServerSharp.Net.SourceGen/ClientboundPacketGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net.SourceGen/ClientboundPacketGenerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Net.SourceGen/MCServerSharp.Net.SourceGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net.SourceGen/MCServerSharp.Net.SourceGen.csproj -------------------------------------------------------------------------------- /MCServerSharp.Net.SourceGen/ProtocolGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net.SourceGen/ProtocolGenerator.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/ClientSettingsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/ClientSettingsComponent.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/ConnectionComponentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/ConnectionComponentExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/ActionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/ActionId.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/ClickMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/ClickMode.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/DiggingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/DiggingStatus.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/HandId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/HandId.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/IO/NetBinaryReaderTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/IO/NetBinaryReaderTypeExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/IO/NetBinaryWriterTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/IO/NetBinaryWriterTypeExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/PlayerAbilityFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/PlayerAbilityFlags.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/RecipeBookId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/RecipeBookId.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Data/Slot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Data/Slot.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Exceptions/NetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Exceptions/NetException.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Exceptions/NetUnknownPacketException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Exceptions/NetUnknownPacketException.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/MCServerSharp.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/MCServerSharp.Net.csproj -------------------------------------------------------------------------------- /MCServerSharp.Net/NetConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetConnection.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetConnectionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetConnectionComponent.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetListener.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetManager.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetOrchestrator.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetOrchestratorWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetOrchestratorWorker.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetPacketCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetPacketCodec.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetPacketSendQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetPacketSendQueue.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/NetSendState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/NetSendState.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/PacketHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/PacketHolder.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/PacketHolderPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/PacketHolderPool.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/PacketWriteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/PacketWriteResult.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/DataEnumerableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/DataEnumerableAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/DataLengthConstraintAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/DataLengthConstraintAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/DataObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/DataObjectAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/DataPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/DataPropertyAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/DataSerializeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/DataSerializeMode.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/LengthPrefixedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/LengthPrefixedAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/LengthSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/LengthSource.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/PacketConstructorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/PacketConstructorAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/PacketIdMappingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/PacketIdMappingAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/PacketStructAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/PacketStructAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Attributes/PacketSwitchCaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Attributes/PacketSwitchCaseAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientAnimation.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientChat.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientClickWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientClickWindow.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientCloseWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientCloseWindow.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientCreativeInventoryAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientCreativeInventoryAction.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientEntityAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientEntityAction.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientHandshake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientHandshake.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientHeldItemChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientHeldItemChange.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientKeepAlive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientKeepAlive.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientLegacyServerListPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientLegacyServerListPing.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientLoginStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientLoginStart.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPacketId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPacketId.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPing.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerAbilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerAbilities.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerBlockPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerBlockPlacement.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerDigging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerDigging.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerMovement.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerPositionRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerPositionRotation.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPlayerRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPlayerRotation.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientPluginMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientPluginMessage.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientRequest.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientSetDisplayedRecipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientSetDisplayedRecipe.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientSetRecipeBookState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientSetRecipeBookState.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientSettings.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientTeleportConfirm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientTeleportConfirm.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Client/ClientUseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Client/ClientUseItem.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/IDataWritable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/IDataWritable.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketCoder.PacketIdDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketCoder.PacketIdDefinition.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketCoder.PacketIdMappingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketCoder.PacketIdMappingInfo.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketCoder.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketDecoder.PacketConstructorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketDecoder.PacketConstructorInfo.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketDecoder.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketEncoder.DataPropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketEncoder.DataPropertyInfo.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/NetPacketEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/NetPacketEncoder.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/PacketStructInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/PacketStructInfo.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/ProtocolState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/ProtocolState.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerChat.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerChunkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerChunkData.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerEntityRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerEntityRotation.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerEntityTeleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerEntityTeleport.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerJoinGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerJoinGame.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerKeepAlive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerKeepAlive.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerLegacyServerListPong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerLegacyServerListPong.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerLoginDisconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerLoginDisconnect.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerLoginSuccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerLoginSuccess.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerOpenWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerOpenWindow.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerPacketId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerPacketId.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerPlayDisconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerPlayDisconnect.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerPlayerAbilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerPlayerAbilities.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerPlayerPositionLook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerPlayerPositionLook.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerPluginMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerPluginMessage.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerPong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerPong.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerResponse.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerSetCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerSetCompression.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerSpawnLivingEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerSpawnLivingEntity.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerSpawnPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerSpawnPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerUnloadChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerUnloadChunk.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerUpdateLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerUpdateLight.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerUpdateTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerUpdateTags.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerUpdateViewDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerUpdateViewDistance.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerUpdateViewPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerUpdateViewPosition.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/Packets/Server/ServerWindowProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/Packets/Server/ServerWindowProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.Net/StringEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Net/StringEnumAttribute.cs -------------------------------------------------------------------------------- /MCServerSharp.Server/MCServerSharp.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Server/MCServerSharp.Server.csproj -------------------------------------------------------------------------------- /MCServerSharp.Server/ServerMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Server/ServerMain.cs -------------------------------------------------------------------------------- /MCServerSharp.Server/Templates/Config/Minecraft/Net/Pong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.Server/Templates/Config/Minecraft/Net/Pong.json -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/BlockDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/BlockDescription.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/BlockState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/BlockState.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/BooleanStateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/BooleanStateProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/DirectBlockPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/DirectBlockPalette.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/DirectionStateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/DirectionStateProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/EnumStateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/EnumStateProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/IBlockPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/IBlockPalette.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/IStateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/IStateProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/IStateProperty{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/IStateProperty{T}.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/IndirectBlockPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/IndirectBlockPalette.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/IntegerStateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/IntegerStateProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/JavaCompatibleBlockPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/JavaCompatibleBlockPalette.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/StateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/StateProperty.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/StatePropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/StatePropertyExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/StatePropertyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/StatePropertyValue.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Blocks/StatePropertyValue{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Blocks/StatePropertyValue{T}.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Entity/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Entity/Entity.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Entity/Mob/Mob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Entity/Mob/Mob.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Entity/Mob/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Entity/Mob/Player.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Entity/Mob/PlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Entity/Mob/PlayerComponent.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Entity/Mob/PlayerComponentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Entity/Mob/PlayerComponentExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.World/FastNoiseLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/FastNoiseLite.cs -------------------------------------------------------------------------------- /MCServerSharp.World/MCServerSharp.World.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/MCServerSharp.World.csproj -------------------------------------------------------------------------------- /MCServerSharp.World/Old/SocketAwaitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Old/SocketAwaitable.cs -------------------------------------------------------------------------------- /MCServerSharp.World/Old/SocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/Old/SocketExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/ChunkColumnManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/ChunkColumnManager.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/ChunkCommandList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/ChunkCommandList.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/ChunkCommandListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/ChunkCommandListExtensions.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/ChunkStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/ChunkStatus.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/Dimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/Dimension.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/DimensionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/DimensionComponent.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/IBlockEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/IBlockEnumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/IChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/IChunk.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/IChunkColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/IChunkColumn.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/IChunkColumnProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/IChunkColumnProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/IChunkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/IChunkProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/IChunkRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/IChunkRegion.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/LocalChunk.BlockEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/LocalChunk.BlockEnumerator.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/LocalChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/LocalChunk.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/LocalChunkColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/LocalChunkColumn.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/LocalChunkColumnProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/LocalChunkColumnProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/LocalChunkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/LocalChunkProvider.cs -------------------------------------------------------------------------------- /MCServerSharp.World/World/LocalChunkRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.World/World/LocalChunkRegion.cs -------------------------------------------------------------------------------- /MCServerSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/MCServerSharp.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/README.md -------------------------------------------------------------------------------- /Sandbox/Sandbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/Sandbox/Sandbox.cs -------------------------------------------------------------------------------- /Sandbox/Sandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/Sandbox/Sandbox.csproj -------------------------------------------------------------------------------- /Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/Tests/Tests.cs -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechPizzaDev/MinecraftServerSharp/HEAD/icon.png --------------------------------------------------------------------------------