neoLegacy/Minecraft.World
Revela b28c0026af detailed summary of every changed file:
---
  Minecraft.Client/ClientConnection.cpp

  Purpose: Propagate hardcore flag through network level creation

  - handleLogin() (2 sites): Changed MultiPlayerLevel constructor calls from hardcoded false for the
  hardcore parameter to packet->m_isHardcore, so the client-side level correctly knows it's hardcore
  when joining a server.
  - handleRespawn(): Same change - when creating a new dimension level on respawn, uses
  packet->m_isHardcore instead of querying minecraft->level->getLevelData()->isHardcore() (which could
   be stale/wrong).

  ---
  Minecraft.Client/Common/App_Defines.h

  Purpose: Define bitmask for hardcore host option

  - Added GAME_HOST_OPTION_BITMASK_HARDCORE (0x40000000) - a new bit in the host options bitfield to
  store whether the game is hardcore.

  ---
  Minecraft.Client/Common/App_enums.h

  Purpose: Add hardcore enum value

  - Added eGameHostOption_Hardcore to the eGameHostOption enum so code can get/set the hardcore flag
  via SetGameHostOption/GetGameHostOption.

  ---
  Minecraft.Client/Common/Consoles_App.cpp

  Purpose: Implement hardcore get/set in host options bitfield

  - SetGameHostOption(): Added case eGameHostOption_Hardcore - sets or clears the
  GAME_HOST_OPTION_BITMASK_HARDCORE bit.
  - GetGameHostOption(): Added case eGameHostOption_Hardcore - returns 1 if the hardcore bit is set, 0
   otherwise.

  ---
  Minecraft.Client/Common/Consoles_App.h

  Purpose: Store save folder name for hardcore world deletion

  - Added SetCurrentSaveFolderName() and GetCurrentSaveFolderName() public methods.
  - Added wstring m_currentSaveFolderName private member - stores the save folder name so the hardcore
   death handler can find and delete the world.

  ---
  Minecraft.Client/Common/UI/IUIScene_PauseMenu.cpp

  Purpose: Delete hardcore world's save data on exit

  - Added Win64_DeleteSaveDirectory() - a recursive directory deletion helper (Windows64 only).
  - In _ExitWorld(): Before the server is torn down, captures whether this is a hardcore death exit
  (getDeleteWorldOnExit()). Tries 3 sources for the save folder name: app storage, StorageManager, and
   MinecraftServer.
  - After the server fully stops, if shouldDeleteHardcoreWorld is true, deletes the entire
  Windows64\GameHDD\<savefolder> directory.

  ---
  Minecraft.Client/Common/UI/UIScene_CreateWorldMenu.cpp

  Purpose: Hardcore difficulty slider in Create World menu

  - Added file-scope s_bHardcore flag to track when the slider is at position 4 (Hardcore).
  - Constructor: Extended difficulty slider range from 0-3 to 0-4, resets s_bHardcore to false.
  - handleSliderMove(): When slider value >= 4, sets s_bHardcore = true, stores actual difficulty as 3
   (Hard), and displays "Hardcore" label. Otherwise behaves normally.
  - CreateGame(): Clears the save folder name (new world), and sets eGameHostOption_Hardcore based on
  s_bHardcore.
  - Minor: Changed RequestErrorMessage to RequestAlertMessage for a content restriction dialog.

  ---
  Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp

  Purpose: Hardcore death screen behavior (Iggy UI)

  - Constructor: Checks if current level is hardcore. If so, shows IDS_HARDCORE_DEATH_MESSAGE on the
  respawn button and hides it. Otherwise shows normal "Respawn" button.
  - handlePress() - Respawn: Added safeguard - if hardcore, blocks respawn entirely.
  - handlePress() - Exit Game: If hardcore and host, skips save dialog, disables save-on-exit, enables
   delete-world-on-exit, and triggers immediate world exit.

  ---
  Minecraft.Client/Common/UI/UIScene_LoadMenu.cpp

  Purpose: Show "Difficulty: Hardcore" in Load World menu + persist hardcore through game launch

  - Static array: Expanded m_iDifficultyTitleSettingA from 4 to 5 entries, added IDS_GAMEMODE_HARDCORE
   at index 4.
  - Constructor: Initializes m_bHardcore = false. In Windows64 block: sets up thumbnail name from save
   details, and reads isHardcore from params->saveDetails. If hardcore, immediately initializes the
  difficulty slider to show "Hardcore" locked at position 4.
  - tick(): When host options are read (bHostOptionsRead block), also reads the hardcore flag and
  re-initializes the slider if needed (for console path).
  - handleSliderMove(): If m_bHardcore, locks the slider at position 4 (prevents changing difficulty).
  - StartGameFromSave(): Stores the save folder name in app for later hardcore deletion. Sets
  eGameHostOption_Hardcore from m_bHardcore.

  ---
  Minecraft.Client/Common/UI/UIScene_LoadMenu.h

  Purpose: Declare hardcore member

  - Expanded m_iDifficultyTitleSettingA from [4] to [5].
  - Added bool m_bHardcore private member.

  ---
  Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.cpp

  Purpose: Read hardcore flag from level.dat when building the save list

  - ReadLevelNameFromSaveFile(): Added optional bool *outHardcore parameter. Inside the NBT Data
  compound tag parsing, if outHardcore is non-null, reads dataTag->getBoolean(L"hardcore").
  - Save enumeration block (Windows64): Passes &saveHardcore to ReadLevelNameFromSaveFile and stores
  the result in m_saveDetails[i].isHardcore.

  ---
  Minecraft.Client/Common/UI/UIStructs.h

  Purpose: Add isHardcore to save list details struct

  - Added bool isHardcore field to _SaveListDetails struct.
  - Initialized to false in the constructor.

  ---
  Minecraft.Client/Common/XUI/XUI_Death.cpp

  Purpose: Hardcore death screen behavior (XUI/Xbox UI)

  - Mirror of the Iggy UIScene_DeathMenu.cpp changes but for the XUI rendering path.
  - OnInit(): Checks isHardcore(), hides respawn button and shows death message if true.
  - OnNotifyPressEx() - Exit Game: If hardcore and host, skips save, flags world for deletion, exits
  immediately.
  - OnNotifyPressEx() - Respawn: Safeguard to block respawn in hardcore.

  ---
  Minecraft.Client/Gui.cpp

  Purpose: Syntax fix

  - Fixed lines.push_back(L"" → lines.push_back(L"") - missing closing quote/paren in debug terrain
  feature display.

  ---
  Minecraft.Client/MinecraftServer.cpp

  Purpose: Server-side hardcore support

  - Constructor: Initializes m_deleteWorldOnExit = false.
  - loadLevel(): Captures the save folder name from StorageManager into m_saveFolderName for later use
   in hardcore world deletion.
  - isHardcore(): Changed from always returning false to returning
  app.GetGameHostOption(eGameHostOption_Hardcore) > 0 - this is the key change that makes the server
  actually report hardcore mode.

  ---
  Minecraft.Client/MinecraftServer.h

  Purpose: Declare hardcore-related members

  - Added bool m_deleteWorldOnExit and wstring m_saveFolderName private members.
  - Added setDeleteWorldOnExit(), getDeleteWorldOnExit(), and getSaveFolderName() public methods.

  ---
  Minecraft.Client/PlayerConnection.h

  Purpose: Thread-safety fix for kicked flag

  - Changed m_bWasKicked from bool to std::atomic<bool> (initialized with {false}).
  - Changed setWasKicked()/getWasKicked() to use .store()/.load() - fixes a race condition where the
  kicked flag is set on one thread and read on another.

  ---
  Minecraft.Client/PlayerList.cpp

  Purpose: Hardcore multiplayer - ban, respawn as Adventure, thread-safe bans

  - Constructor/Destructor: Added InitializeCriticalSection/DeleteCriticalSection for m_banCS.
  - placeNewPlayer(): Passes isHardcore() flag to the LoginPacket constructor so clients joining know
  it's hardcore.
  - respawn(): After respawn in hardcore, forces the player into Adventure mode (spectate-like: can
  look around but not interact). Sends GameEventPacket to sync client.
  - respawn() and toggleDimension() (2 sites): Pass isHardcore() to RespawnPacket constructor.
  - isXuidBanned(): Wrapped m_bannedXuids iteration with EnterCriticalSection/LeaveCriticalSection for
   thread safety.
  - banXuid() (new): Thread-safe method to add a player's XUID to the ban list - used when a player
  dies in hardcore multiplayer.

  ---
  Minecraft.Client/PlayerList.h

  Purpose: Declare ban-related additions

  - Added CRITICAL_SECTION m_banCS to protect m_bannedXuids.
  - Added void banXuid(PlayerUID xuid) public method.

  ---
  Minecraft.Client/SelectWorldScreen.cpp

  Purpose: Show [Hardcore] badge in Java-style world list

  - In renderItem(): If levelSummary->isHardcore(), appends  [Hardcore] to the world name display.

  ---
  Minecraft.Client/ServerPlayer.cpp

  Purpose: Hardcore death behavior on server

  - die(): If the level is hardcore, switches the dead player to Adventure mode (so they can't
  interact if somehow respawned).
  - Minor: Two comment lines changed // → /// (no functional change).

  ---
  Minecraft.Client/Windows64Media/strings.h

  Purpose: String IDs for hardcore UI text

  - Added 8 new string IDs (2286-2293): IDS_GAMEMODE_HARDCORE, IDS_HARDCORE, IDS_HARDCORE_TOOLTIP,
  IDS_HARDCORE_WARNING_TITLE, IDS_HARDCORE_WARNING_TEXT, IDS_HARDCORE_DEATH_MESSAGE,
  IDS_LABEL_HARDCORE, IDS_GAMEOPTION_HARDCORE.

  ---
  Minecraft.World/ConsoleSaveFileOriginal.cpp

  Purpose: Capture save folder name after first save (for new worlds)

  - SaveSaveDataCallback() (Windows64 only): After a successful save, if the app doesn't yet know the
  save folder name, attempts to capture it via StorageManager or by scanning Windows64\GameHDD\ for
  the newest folder. This handles the case where a newly-created hardcore world hasn't been saved yet
  when the folder name is needed.

  ---
  Minecraft.World/DisconnectPacket.h

  Purpose: Hardcore disconnect reason

  - Added eDisconnect_HardcoreDeath to the disconnect reason enum - used when kicking a player who
  died in hardcore multiplayer.

  ---
  Minecraft.World/LoginPacket.cpp & LoginPacket.h

  Purpose: Serialize hardcore flag in login packet

  - Added bool m_isHardcore member, initialized to false in both constructors.
  - Server→Client constructor now accepts bool isHardcore = false parameter.
  - read(): Reads m_isHardcore from the stream.
  - write(): Writes m_isHardcore to the stream.
  - getEstimatedSize(): Added sizeof(bool) for the new field.

  ---
  Minecraft.World/RespawnPacket.cpp & RespawnPacket.h

  Purpose: Serialize hardcore flag in respawn packet

  - Added bool m_isHardcore member, initialized to false.
  - Constructor now accepts bool isHardcore = false parameter.
  - read()/write(): Serialize m_isHardcore via readBoolean()/writeBoolean().
  - getEstimatedSize(): Changed from 13 to 14 bytes to account for the new boolean.
2026-03-13 06:56:46 -05:00
..
ARM64EC_Debug Add ARM64EC Support (#174) 2026-03-03 03:06:21 +07:00
x64headers Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AABB.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AABB.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Abilities.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Abilities.h Initial commit 2026-03-01 12:16:08 +08:00
AbsoptionMobEffect.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AbsoptionMobEffect.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AbstractContainerMenu.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
AbstractContainerMenu.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AbstractProjectileDispenseBehavior.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AbstractProjectileDispenseBehavior.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Achievement.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Achievement.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
Achievements.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Achievements.h Initial commit 2026-03-01 12:16:08 +08:00
AddEntityPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddEntityPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddExperienceOrbPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
AddExperienceOrbPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddGlobalEntityPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AddGlobalEntityPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddIslandLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AddIslandLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AddMobPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddMobPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddMushroomIslandLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AddMushroomIslandLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AddPaintingPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
AddPaintingPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddPlayerPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddPlayerPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AddSnowLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AddSnowLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AdminLogCommand.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
AgableMob.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AgableMob.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AirTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
AirTile.h Initial commit 2026-03-01 12:16:08 +08:00
AmbientCreature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AmbientCreature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Animal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Animal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AnimalChest.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AnimalChest.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AnimatePacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
AnimatePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AnvilMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AnvilMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AnvilTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AnvilTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AnvilTileItem.cpp Initial commit 2026-03-01 12:16:08 +08:00
AnvilTileItem.h Initial commit 2026-03-01 12:16:08 +08:00
ArmorDyeRecipe.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ArmorDyeRecipe.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
ArmorItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ArmorItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ArmorRecipes.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ArmorRecipes.h Initial commit 2026-03-01 12:16:08 +08:00
ArmorSlot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ArmorSlot.h Minor fixes 2026-03-03 06:14:34 +07:00
Arrays.h Initial commit 2026-03-01 12:16:08 +08:00
ArrayWithLength.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Arrow.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Arrow.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ArrowAttackGoal.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ArrowAttackGoal.h Initial commit 2026-03-01 12:16:08 +08:00
ArrowDamageEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
ArrowDamageEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
ArrowFireEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
ArrowFireEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
ArrowInfiniteEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
ArrowInfiniteEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
ArrowKnockbackEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
ArrowKnockbackEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
AttackDamageMobEffect.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AttackDamageMobEffect.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Attribute.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Attribute.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AttributeInstance.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AttributeModifier.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AttributeModifier.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AuxDataTileItem.cpp Initial commit 2026-03-01 12:16:08 +08:00
AuxDataTileItem.h Initial commit 2026-03-01 12:16:08 +08:00
AvoidPlayerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AvoidPlayerGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
AwardStatPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
AwardStatPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BaseAttribute.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BaseAttribute.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BaseAttributeMap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BaseAttributeMap.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BaseEntityTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BaseEntityTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BaseMobSpawner.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BaseMobSpawner.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BasePressurePlateTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BasePressurePlateTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BaseRailTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BaseRailTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BasicTree.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BasicTree.h Initial commit 2026-03-01 12:16:08 +08:00
BasicTypeContainers.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BasicTypeContainers.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Bat.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Bat.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BeachBiome.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BeachBiome.h Initial commit 2026-03-01 12:16:08 +08:00
BeaconMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BeaconMenu.h Minor fixes 2026-03-03 06:14:34 +07:00
BeaconTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BeaconTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BeaconTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BeaconTileEntity.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
BedItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BedItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BedTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BedTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BegGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BegGoal.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Behavior.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BehaviorRegistry.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
BehaviorRegistry.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BinaryHeap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BinaryHeap.h Initial commit 2026-03-01 12:16:08 +08:00
Biome.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Biome.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BiomeCache.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BiomeCache.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
BiomeDecorator.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BiomeDecorator.h Initial commit 2026-03-01 12:16:08 +08:00
BiomeInitLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
BiomeInitLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
BiomeOverrideLayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BiomeOverrideLayer.h Initial commit 2026-03-01 12:16:08 +08:00
BiomeSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BiomeSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
BirchFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BirchFeature.h Initial commit 2026-03-01 12:16:08 +08:00
Blaze.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Blaze.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BlockDestructionProgress.cpp Initial commit 2026-03-01 12:16:08 +08:00
BlockDestructionProgress.h Initial commit 2026-03-01 12:16:08 +08:00
BlockGenMethods.cpp Initial commit 2026-03-01 12:16:08 +08:00
BlockGenMethods.h Initial commit 2026-03-01 12:16:08 +08:00
BlockRegionUpdatePacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
BlockRegionUpdatePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BlockReplacements.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BlockReplacements.h Initial commit 2026-03-01 12:16:08 +08:00
BlockSource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BlockSourceImpl.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BlockSourceImpl.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Boat.cpp Reimplement boat gravity again. (#988) 2026-03-08 21:12:13 -05:00
Boat.h Fix boat gravity (#651) 2026-03-05 23:35:45 -06:00
BoatItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BoatItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BodyControl.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BodyControl.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BonusChestFeature.cpp FIX: Bonus Chests spawn again when loading back in. #982 (#992) 2026-03-09 22:07:38 -05:00
BonusChestFeature.h Initial commit 2026-03-01 12:16:08 +08:00
BookItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BookItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BookshelfTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
BookshelfTile.h Initial commit 2026-03-01 12:16:08 +08:00
BossMob.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BossMob.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BossMobPart.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BossMobPart.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BottleItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BottleItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BoundingBox.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BoundingBox.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BowItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BowItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BowlFoodItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BowlFoodItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BreakDoorGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BreakDoorGoal.h Initial commit 2026-03-01 12:16:08 +08:00
BreedGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BreedGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BrewingStandMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BrewingStandMenu.h Minor fixes 2026-03-03 06:14:34 +07:00
BrewingStandTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BrewingStandTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BrewingStandTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BrewingStandTileEntity.h Minor fixes 2026-03-03 06:14:34 +07:00
BucketItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BucketItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Buffer.cpp Initial commit 2026-03-01 12:16:08 +08:00
Buffer.h Initial commit 2026-03-01 12:16:08 +08:00
BufferedOutputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BufferedOutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
BufferedReader.cpp Initial commit 2026-03-01 12:16:08 +08:00
BufferedReader.h Initial commit 2026-03-01 12:16:08 +08:00
Bush.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Bush.h Initial commit 2026-03-01 12:16:08 +08:00
ButtonTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ButtonTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ByteArrayInputStream.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ByteArrayInputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ByteArrayOutputStream.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ByteArrayOutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
ByteArrayTag.h Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ByteBuffer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ByteBuffer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ByteTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
C4JThread.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
C4JThread.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
CactusFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CactusFeature.h Initial commit 2026-03-01 12:16:08 +08:00
CactusTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CactusTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CakeTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CakeTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Calendar.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Calendar.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CanyonFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CanyonFeature.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
CarrotOnAStickItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CarrotOnAStickItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CarrotTile.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
CarrotTile.h Initial commit 2026-03-01 12:16:08 +08:00
CauldronTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CauldronTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CaveFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CaveFeature.h Initial commit 2026-03-01 12:16:08 +08:00
CaveSpider.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CaveSpider.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChatAutoCompletePacket.h Initial commit 2026-03-01 12:16:08 +08:00
ChatPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChatPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChestTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChestTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChestTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChestTileEntity.h Minor fixes 2026-03-03 06:14:34 +07:00
Chicken.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Chicken.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChunkPos.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChunkPos.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ChunkSource.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChunkStorage.h Initial commit 2026-03-01 12:16:08 +08:00
ChunkStorageProfileDecorator.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChunkStorageProfileDecorator.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ChunkTilesUpdatePacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChunkTilesUpdatePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChunkVisibilityAreaPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ChunkVisibilityAreaPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChunkVisibilityPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ChunkVisibilityPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Class.cpp Initial commit 2026-03-01 12:16:08 +08:00
Class.h Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
ClassDiagram.cd feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ClayFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ClayFeature.h Initial commit 2026-03-01 12:16:08 +08:00
ClayTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
ClayTile.h Initial commit 2026-03-01 12:16:08 +08:00
ClientCommandPacket.cpp Revert "dynamic_pointer_cast -> std::dynamic_pointer_cast" 2026-03-02 17:36:56 +07:00
ClientCommandPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ClientInformationPacket.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ClientProtocolPacket.h Initial commit 2026-03-01 12:16:08 +08:00
ClientSideMerchant.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ClientSideMerchant.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ClockItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ClockItem.h Initial commit 2026-03-01 12:16:08 +08:00
ClothDyeRecipes.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ClothDyeRecipes.h Initial commit 2026-03-01 12:16:08 +08:00
ClothTile.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
ClothTile.h Initial commit 2026-03-01 12:16:08 +08:00
ClothTileItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ClothTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CoalItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CoalItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CocoaTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CocoaTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Color.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Color.h Initial commit 2026-03-01 12:16:08 +08:00
ColoredTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ColoredTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ColoredTileItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ColoredTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
com.mojang.nbt.h Initial commit 2026-03-01 12:16:08 +08:00
CombatEntry.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CombatEntry.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CombatTracker.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CombatTracker.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Command.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Command.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CommandBlock.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CommandBlock.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CommandBlockEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CommandBlockEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CommandDispatcher.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
CommandDispatcher.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CommandSender.h Initial commit 2026-03-01 12:16:08 +08:00
CommandsEnum.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CommonStats.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CommonStats.h Initial commit 2026-03-01 12:16:08 +08:00
ComparatorTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ComparatorTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ComparatorTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ComparatorTileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CompassItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CompassItem.h Initial commit 2026-03-01 12:16:08 +08:00
compile_flags.txt Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
ComplexItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ComplexItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ComplexItemDataPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ComplexItemDataPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CompoundContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CompoundContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
CompoundTag.h Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
CompressedTileStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CompressedTileStorage.h Initial commit 2026-03-01 12:16:08 +08:00
compression.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
compression.h Initial commit 2026-03-01 12:16:08 +08:00
Connection.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
Connection.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ConsoleSaveFile.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ConsoleSaveFileConverter.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ConsoleSaveFileConverter.h Initial commit 2026-03-01 12:16:08 +08:00
ConsoleSaveFileInputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ConsoleSaveFileInputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ConsoleSaveFileIO.h Initial commit 2026-03-01 12:16:08 +08:00
ConsoleSaveFileOriginal.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
ConsoleSaveFileOriginal.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ConsoleSaveFileOutputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ConsoleSaveFileOutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
ConsoleSavePath.h Initial commit 2026-03-01 12:16:08 +08:00
Container.cpp Initial commit 2026-03-01 12:16:08 +08:00
Container.h Minor fixes 2026-03-03 06:14:34 +07:00
ContainerAckPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ContainerAckPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerButtonClickPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ContainerButtonClickPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerClickPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ContainerClickPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerClosePacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ContainerClosePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ContainerOpenPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ContainerOpenPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerSetContentPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ContainerSetContentPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerSetDataPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ContainerSetDataPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ContainerSetSlotPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ContainerSetSlotPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Control.h Initial commit 2026-03-01 12:16:08 +08:00
ControlledByPlayerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ControlledByPlayerGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Coord.h Initial commit 2026-03-01 12:16:08 +08:00
CoralTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
CoralTile.h Initial commit 2026-03-01 12:16:08 +08:00
Cow.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Cow.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CraftingContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CraftingContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
CraftingMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CraftingMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CraftItemPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
CraftItemPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Creature.cpp Initial commit 2026-03-01 12:16:08 +08:00
Creature.h Initial commit 2026-03-01 12:16:08 +08:00
Creeper.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Creeper.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CropTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CropTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CustomLevelSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CustomLevelSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
CustomPayloadPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
CustomPayloadPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DamageEnchantment.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DamageEnchantment.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DamageSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DamageSource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DataInput.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DataInputStream.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
DataInputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DataLayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DataLayer.h Initial commit 2026-03-01 12:16:08 +08:00
DataOutput.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DataOutputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DataOutputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DaylightDetectorTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DaylightDetectorTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DaylightDetectorTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DaylightDetectorTileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DeadBushFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DeadBushFeature.h Initial commit 2026-03-01 12:16:08 +08:00
DeadBushTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DeadBushTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DebugOptionsPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DebugOptionsPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DecorationMaterial.h Initial commit 2026-03-01 12:16:08 +08:00
DefaultDispenseItemBehavior.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DefaultDispenseItemBehavior.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DefaultGameModeCommand.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DefaultGameModeCommand.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DefendVillageTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DefendVillageTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Definitions.h Initial commit 2026-03-01 12:16:08 +08:00
DelayedRelease.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DelayedRelease.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DerivedLevelData.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DerivedLevelData.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DescFormatter.h Initial commit 2026-03-01 12:16:08 +08:00
DesertBiome.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DesertBiome.h Initial commit 2026-03-01 12:16:08 +08:00
DesertWellFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DesertWellFeature.h Initial commit 2026-03-01 12:16:08 +08:00
DetectorRailTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DetectorRailTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Difficulty.h Initial commit 2026-03-01 12:16:08 +08:00
DigDurabilityEnchantment.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DigDurabilityEnchantment.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DiggerItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DiggerItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DiggingEnchantment.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DiggingEnchantment.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Dimension.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Dimension.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DiodeTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DiodeTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Direction.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Direction.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DirectionalTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DirectionalTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DirectoryLevelStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DirectoryLevelStorage.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DirectoryLevelStorageSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DirectoryLevelStorageSource.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DirtTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
DirtTile.h Initial commit 2026-03-01 12:16:08 +08:00
DisconnectPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DisconnectPacket.h detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
DispenseItemBehavior.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DispenseItemBehavior.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DispenserTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DispenserTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DispenserTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DispenserTileEntity.h Minor fixes 2026-03-03 06:14:34 +07:00
Distort.cpp Initial commit 2026-03-01 12:16:08 +08:00
Distort.h Initial commit 2026-03-01 12:16:08 +08:00
DoorInfo.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DoorInfo.h Initial commit 2026-03-01 12:16:08 +08:00
DoorInteractGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DoorInteractGoal.h Initial commit 2026-03-01 12:16:08 +08:00
DoorItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DoorItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DoorTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DoorTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DoubleTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DownfallLayer.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DownfallLayer.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DownfallMixerLayer.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DownfallMixerLayer.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DragonFireball.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DragonFireball.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DropperTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DropperTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DropperTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DropperTileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DummyCriteria.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DummyCriteria.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DungeonFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DungeonFeature.h Initial commit 2026-03-01 12:16:08 +08:00
DurangoStats.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DurangoStats.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DyePowderItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DyePowderItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EatTileGoal.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EatTileGoal.h Initial commit 2026-03-01 12:16:08 +08:00
EffectCommand.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EffectCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EggItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EggItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EggTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EggTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Emboss.cpp Initial commit 2026-03-01 12:16:08 +08:00
Emboss.h Initial commit 2026-03-01 12:16:08 +08:00
EmptyLevelChunk.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
EmptyLevelChunk.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
EmptyMapItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EmptyMapItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnchantedBookItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantedBookItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnchantItemCommand.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantItemCommand.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Enchantment.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Enchantment.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnchantmentCategory.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantmentCategory.h Initial commit 2026-03-01 12:16:08 +08:00
EnchantmentContainer.cpp Minor fixes 2026-03-03 06:14:34 +07:00
EnchantmentContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
EnchantmentHelper.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantmentHelper.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnchantmentInstance.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantmentInstance.h Initial commit 2026-03-01 12:16:08 +08:00
EnchantmentMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantmentMenu.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
EnchantmentSlot.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EnchantmentTableEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantmentTableEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnchantmentTableTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantmentTableTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderChestTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderChestTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderChestTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderChestTileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderCrystal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderCrystal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderDragon.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderDragon.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderEyeItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderEyeItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderMan.cpp Fixed Enderman, monster aggro in creative (#1051) 2026-03-09 22:05:56 -05:00
EnderMan.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderpearlItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderpearlItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EndPodiumFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EndPodiumFeature.h Initial commit 2026-03-01 12:16:08 +08:00
EndTag.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Enemy.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Enemy.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Entity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Entity.h Minor fixes 2026-03-03 06:14:34 +07:00
EntityActionAtPositionPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityActionAtPositionPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityDamageSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityDamageSource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityDiagram.cd feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityEvent.h Initial commit 2026-03-01 12:16:08 +08:00
EntityEventPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
EntityEventPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityHorse.cpp Fix tamed horses despawning when player moves away (#1057) 2026-03-09 22:06:38 -05:00
EntityHorse.h Fix tamed horses despawning when player moves away (#1057) 2026-03-09 22:06:38 -05:00
EntityIO.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityIO.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EntityPos.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityPos.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EntitySelector.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntitySelector.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityTile.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EntityTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Exceptions.h Initial commit 2026-03-01 12:16:08 +08:00
ExperienceCommand.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ExperienceCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ExperienceItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ExperienceItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ExperienceOrb.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ExperienceOrb.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ExplodePacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ExplodePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Explosion.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Explosion.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ExtremeHillsBiome.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ExtremeHillsBiome.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EyeOfEnderSignal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EyeOfEnderSignal.h Initial commit 2026-03-01 12:16:08 +08:00
Facing.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Facing.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FacingEnum.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FacingEnum.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FallingTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FallingTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FarmTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FarmTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FastNoise.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FastNoise.h Initial commit 2026-03-01 12:16:08 +08:00
Feature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Feature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FenceGateTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FenceGateTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FenceTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FenceTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
File.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
File.h Fix C-style struct functor definitions 2026-03-02 14:51:05 +07:00
FileFilter.h Initial commit 2026-03-01 12:16:08 +08:00
FileHeader.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FileHeader.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
FileInputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FileInputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
FilenameFilter.h Initial commit 2026-03-01 12:16:08 +08:00
FileOutputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FileOutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
FireAspectEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
FireAspectEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
Fireball.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Fireball.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FireChargeItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireChargeItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FireTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FireworksChargeItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireworksChargeItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FireworksItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireworksItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FireworksMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireworksMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FireworksRecipe.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireworksRecipe.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
FireworksRocketEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireworksRocketEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FishingHook.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FishingHook.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FishingRodItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FishingRodItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FixedBiomeSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FixedBiomeSource.h Initial commit 2026-03-01 12:16:08 +08:00
FlatGeneratorInfo.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlatGeneratorInfo.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FlatLayer.cpp Initial commit 2026-03-01 12:16:08 +08:00
FlatLayer.h Initial commit 2026-03-01 12:16:08 +08:00
FlatLayerInfo.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
FlatLayerInfo.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FlatLevelSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlatLevelSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
FleeSunGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FleeSunGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FlintAndSteelItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FlintAndSteelItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FlippedIcon.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlippedIcon.h Initial commit 2026-03-01 12:16:08 +08:00
FloatBuffer.cpp Initial commit 2026-03-01 12:16:08 +08:00
FloatBuffer.h Initial commit 2026-03-01 12:16:08 +08:00
FloatGoal.cpp Initial commit 2026-03-01 12:16:08 +08:00
FloatGoal.h Initial commit 2026-03-01 12:16:08 +08:00
FloatTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlowerFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlowerFeature.h Initial commit 2026-03-01 12:16:08 +08:00
FlowerPotTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlowerPotTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FlyingMob.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlyingMob.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FoliageColor.cpp Initial commit 2026-03-01 12:16:08 +08:00
FoliageColor.h Initial commit 2026-03-01 12:16:08 +08:00
FollowOwnerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FollowOwnerGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FollowParentGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FollowParentGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FoodConstants.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FoodConstants.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FoodData.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FoodData.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FoodItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FoodItem.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FoodRecipies.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FoodRecipies.h Initial commit 2026-03-01 12:16:08 +08:00
ForestBiome.cpp Initial commit 2026-03-01 12:16:08 +08:00
ForestBiome.h Initial commit 2026-03-01 12:16:08 +08:00
FurnaceMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FurnaceMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FurnaceRecipes.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FurnaceRecipes.h Initial commit 2026-03-01 12:16:08 +08:00
FurnaceResultSlot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FurnaceResultSlot.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FurnaceTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FurnaceTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FurnaceTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FurnaceTileEntity.h Minor fixes 2026-03-03 06:14:34 +07:00
FuzzyZoomLayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FuzzyZoomLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
GameCommandPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
GameCommandPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GameDifficultyCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GameEventPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
GameEventPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GameModeCommand.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GameModeCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GameRuleCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GameRules.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
GameRules.h Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
GasMaterial.h Initial commit 2026-03-01 12:16:08 +08:00
GeneralStat.cpp Initial commit 2026-03-01 12:16:08 +08:00
GeneralStat.h Initial commit 2026-03-01 12:16:08 +08:00
GenericStats.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GenericStats.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
GetInfoPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
GetInfoPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Ghast.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Ghast.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Giant.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Giant.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GiveItemCommand.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GiveItemCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GlassTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
GlassTile.h Initial commit 2026-03-01 12:16:08 +08:00
GlobalEntity.cpp Initial commit 2026-03-01 12:16:08 +08:00
GlobalEntity.h Initial commit 2026-03-01 12:16:08 +08:00
GlowstoneTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GlowstoneTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Goal.cpp Initial commit 2026-03-01 12:16:08 +08:00
Goal.h Initial commit 2026-03-01 12:16:08 +08:00
GoalSelector.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
GoalSelector.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GoldenAppleItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GoldenAppleItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Golem.cpp Initial commit 2026-03-01 12:16:08 +08:00
Golem.h Initial commit 2026-03-01 12:16:08 +08:00
GrassColor.cpp Initial commit 2026-03-01 12:16:08 +08:00
GrassColor.h Initial commit 2026-03-01 12:16:08 +08:00
GrassTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GrassTile.h Initial commit 2026-03-01 12:16:08 +08:00
GravelTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GravelTile.h Initial commit 2026-03-01 12:16:08 +08:00
GroundBushFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GroundBushFeature.h Initial commit 2026-03-01 12:16:08 +08:00
GrowMushroomIslandLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
GrowMushroomIslandLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
GZIPInputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
GZIPOutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
HalfSlabTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HalfSlabTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HalfTransparentTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
HalfTransparentTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HangingEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HangingEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HangingEntityItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HangingEntityItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Hasher.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
Hasher.h Initial commit 2026-03-01 12:16:08 +08:00
HashExtension.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
HatchetItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HatchetItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
HayBlockTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HayBlockTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HealthBoostMobEffect.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HealthBoostMobEffect.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HealthCriteria.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
HealthCriteria.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HeavyTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HeavyTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HellBiome.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HellBiome.h Initial commit 2026-03-01 12:16:08 +08:00
HellDimension.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HellDimension.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
HellFireFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HellFireFeature.h Initial commit 2026-03-01 12:16:08 +08:00
HellFlatLevelSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HellFlatLevelSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
HellPortalFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HellPortalFeature.h Initial commit 2026-03-01 12:16:08 +08:00
HellRandomLevelSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HellRandomLevelSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
HellSandTile.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
HellSandTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
HellSpringFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HellSpringFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HellStoneTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
HellStoneTile.h Initial commit 2026-03-01 12:16:08 +08:00
HitResult.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HitResult.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
HoeItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HoeItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Hopper.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HopperMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HopperMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HopperTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HopperTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HopperTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HopperTileEntity.h Minor fixes 2026-03-03 06:14:34 +07:00
HorseInventoryMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HorseInventoryMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HouseFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HouseFeature.h Initial commit 2026-03-01 12:16:08 +08:00
HtmlString.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HtmlString.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HugeMushroomFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HugeMushroomFeature.h Initial commit 2026-03-01 12:16:08 +08:00
HugeMushroomTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HugeMushroomTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HurtByTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HurtByTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
I18n.cpp Minor fixes 2026-03-03 06:14:34 +07:00
I18n.h Minor fixes 2026-03-03 06:14:34 +07:00
IceBiome.cpp Initial commit 2026-03-01 12:16:08 +08:00
IceBiome.h Initial commit 2026-03-01 12:16:08 +08:00
IceTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
IceTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Icon.h Initial commit 2026-03-01 12:16:08 +08:00
IconRegister.h Initial commit 2026-03-01 12:16:08 +08:00
ImprovedNoise.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ImprovedNoise.h Initial commit 2026-03-01 12:16:08 +08:00
IndirectEntityDamageSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
IndirectEntityDamageSource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
InputOutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
InputStream.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
InputStream.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
InputStreamReader.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
InputStreamReader.h Initial commit 2026-03-01 12:16:08 +08:00
InstantenousMobEffect.cpp Initial commit 2026-03-01 12:16:08 +08:00
InstantenousMobEffect.h Initial commit 2026-03-01 12:16:08 +08:00
IntArrayTag.h Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
IntBuffer.cpp Initial commit 2026-03-01 12:16:08 +08:00
IntBuffer.h Initial commit 2026-03-01 12:16:08 +08:00
IntCache.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
IntCache.h Initial commit 2026-03-01 12:16:08 +08:00
InteractGoal.cpp Initial commit 2026-03-01 12:16:08 +08:00
InteractGoal.h Initial commit 2026-03-01 12:16:08 +08:00
InteractPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
InteractPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
IntTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Inventory.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Inventory.h Initial fixes for ContainerSetSlotPacket and CraftItemPacket (#649) 2026-03-05 21:20:40 -06:00
InventoryMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
InventoryMenu.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
IslandLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
IslandLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Item.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Item.h Minor fixes 2026-03-03 06:14:34 +07:00
ItemDispenseBehaviors.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemDispenseBehaviors.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ItemEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ItemFrame.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemFrame.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ItemInstance.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemInstance.h Minor fixes 2026-03-03 06:14:34 +07:00
ItemStat.cpp Initial commit 2026-03-01 12:16:08 +08:00
ItemStat.h Initial commit 2026-03-01 12:16:08 +08:00
JavaIntHash.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
JavaMath.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
JavaMath.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
JukeboxTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
JukeboxTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
JumpControl.cpp Initial commit 2026-03-01 12:16:08 +08:00
JumpControl.h Initial commit 2026-03-01 12:16:08 +08:00
JungleBiome.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
JungleBiome.h Initial commit 2026-03-01 12:16:08 +08:00
KeepAlivePacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
KeepAlivePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
KickPlayerPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
KickPlayerPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
KillCommand.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
KillCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
KnockbackEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
KnockbackEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
LadderTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LadderTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LakeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LakeFeature.h Initial commit 2026-03-01 12:16:08 +08:00
Language.cpp Minor fixes 2026-03-03 06:14:34 +07:00
Language.h Minor fixes 2026-03-03 06:14:34 +07:00
LargeCaveFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LargeCaveFeature.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LargeFeature.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LargeFeature.h Initial commit 2026-03-01 12:16:08 +08:00
LargeFireball.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LargeFireball.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LargeHellCaveFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LargeHellCaveFeature.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LavaSlime.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LavaSlime.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Layer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Layer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LeafTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LeafTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LeafTileItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LeafTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LeapAtTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LeapAtTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LeashFenceKnotEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LeashFenceKnotEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LeashItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LeashItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Level.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Level.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelChunk.cpp Fix SubEntity hitbox hit detection (#1175) 2026-03-12 12:32:27 +00:00
LevelChunk.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LevelConflictException.cpp Initial commit 2026-03-01 12:16:08 +08:00
LevelConflictException.h Initial commit 2026-03-01 12:16:08 +08:00
LevelData.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelData.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LevelEvent.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LevelEventPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LevelEventPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelListener.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LevelObjectInputStream.h Initial commit 2026-03-01 12:16:08 +08:00
LevelParticlesPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LevelParticlesPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelSettings.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelSettings.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LevelSoundPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelSoundPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelSource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LevelStorage.cpp Initial commit 2026-03-01 12:16:08 +08:00
LevelStorage.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelStorageProfilerDecorator.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LevelStorageProfilerDecorator.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LevelStorageSource.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LevelSummary.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LevelSummary.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LevelType.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelType.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LeverTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LeverTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LightGemFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LightGemFeature.h Initial commit 2026-03-01 12:16:08 +08:00
LightGemTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
LightGemTile.h Initial commit 2026-03-01 12:16:08 +08:00
LightLayer.h Initial commit 2026-03-01 12:16:08 +08:00
LightningBolt.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LightningBolt.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
LiquidMaterial.h Initial commit 2026-03-01 12:16:08 +08:00
LiquidTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LiquidTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LiquidTileDynamic.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LiquidTileDynamic.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LiquidTileStatic.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LiquidTileStatic.h Initial commit 2026-03-01 12:16:08 +08:00
ListTag.h Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
LivingEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LivingEntity.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LocatableSource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Location.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LockedChestTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LockedChestTile.h Initial commit 2026-03-01 12:16:08 +08:00
LoginPacket.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
LoginPacket.h detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
LongTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LookAtPlayerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LookAtPlayerGoal.h Initial commit 2026-03-01 12:16:08 +08:00
LookAtTradingPlayerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LookAtTradingPlayerGoal.h Initial commit 2026-03-01 12:16:08 +08:00
LookControl.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LookControl.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LootBonusEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
LootBonusEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
MakeLoveGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MakeLoveGoal.h Initial commit 2026-03-01 12:16:08 +08:00
MapCloningRecipe.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MapExtendingRecipe.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MapItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MapItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MapItemSavedData.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MapItemSavedData.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Material.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Material.h Initial commit 2026-03-01 12:16:08 +08:00
MaterialColor.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MaterialColor.h Initial commit 2026-03-01 12:16:08 +08:00
McRegionChunkStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
McRegionChunkStorage.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
McRegionLevelStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
McRegionLevelStorage.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
McRegionLevelStorageSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
McRegionLevelStorageSource.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MegaTreeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MegaTreeFeature.h Initial commit 2026-03-01 12:16:08 +08:00
MeleeAttackGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MeleeAttackGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MelonTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MelonTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MemoryChunkStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MemoryChunkStorage.h Initial commit 2026-03-01 12:16:08 +08:00
MemoryLevelStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MemoryLevelStorage.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MemoryLevelStorageSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MemoryLevelStorageSource.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MenuBackup.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MenuBackup.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Merchant.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MerchantContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MerchantContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
MerchantMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MerchantMenu.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MerchantRecipe.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MerchantRecipe.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MerchantRecipeList.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MerchantRecipeList.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MerchantResultSlot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MerchantResultSlot.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MetalTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
MetalTile.h Initial commit 2026-03-01 12:16:08 +08:00
MilkBucketItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MilkBucketItem.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Minecart.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Minecart.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartChest.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartChest.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
MinecartFurnace.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartFurnace.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartHopper.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartHopper.h Minor fixes 2026-03-03 06:14:34 +07:00
MinecartItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartRideable.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartRideable.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartSpawner.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartSpawner.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartTNT.cpp Prevent TNT Minecart exploding with TNT disabled (#1067) 2026-03-09 16:01:17 -05:00
MinecartTNT.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Minecraft.World.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Minecraft.World.h Initial commit 2026-03-01 12:16:08 +08:00
Minecraft.World.vcxproj Move to newer C++17 language standard 2026-03-08 00:23:39 +07:00
Minecraft.World.vcxproj.filters feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Minecraft.World.vcxproj.user Initial commit 2026-03-01 12:16:08 +08:00
Minecraft.World.vcxproj.vspscc Initial commit 2026-03-01 12:16:08 +08:00
MineShaftFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MineShaftFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MineShaftPieces.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MineShaftPieces.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MineShaftStart.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MineShaftStart.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Mob.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Mob.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobCategory.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobCategory.h Revert "50% - 100% increase to some mob caps. (#789)" 2026-03-07 12:54:40 -06:00
MobEffect.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobEffect.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobEffectInstance.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobEffectInstance.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobGroupData.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobSpawner.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobSpawner.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobSpawnerTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobSpawnerTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobSpawnerTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobSpawnerTileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobType.h Initial commit 2026-03-01 12:16:08 +08:00
MockedLevelStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MockedLevelStorage.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ModifiableAttributeInstance.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ModifiableAttributeInstance.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Monster.cpp Fixed Enderman, monster aggro in creative (#1051) 2026-03-09 22:05:56 -05:00
Monster.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MonsterPlacerItem.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
MonsterPlacerItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MonsterRoomFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MonsterRoomFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MouseInventoryClickHandler.h Initial commit 2026-03-01 12:16:08 +08:00
MoveControl.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveControl.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MoveEntityPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveEntityPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveEntityPacketSmall.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveEntityPacketSmall.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveIndoorsGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveIndoorsGoal.h Initial commit 2026-03-01 12:16:08 +08:00
MovePlayerPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MovePlayerPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveThroughVillageGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveThroughVillageGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MoveTowardsRestrictionGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveTowardsRestrictionGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MoveTowardsTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MoveTowardsTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Mth.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Mth.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
MultiEntityMob.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MultiEntityMobPart.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MultiEntityMobPart.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MultiTextureTileItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MultiTextureTileItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Mushroom.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Mushroom.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MushroomCow.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MushroomCow.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MushroomIslandBiome.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MushroomIslandBiome.h Initial commit 2026-03-01 12:16:08 +08:00
MusicTile.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MusicTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MusicTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MusicTileEntity.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MycelTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MycelTile.h Initial commit 2026-03-01 12:16:08 +08:00
NameTagItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NameTagItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NbtIo.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NbtIo.h Initial commit 2026-03-01 12:16:08 +08:00
NbtSlotFile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NbtSlotFile.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
NearestAttackableTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NearestAttackableTargetGoal.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
net.minecraft.commands.common.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.commands.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.core.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.locale.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.network.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.network.packet.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.stats.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.ContainerListener.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.damagesource.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.effect.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.ai.attributes.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.ai.control.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.ai.goal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.ai.goal.target.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.ai.navigation.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.ai.sensing.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.ai.util.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.ai.village.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.ambient.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.animal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.boss.enderdragon.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.boss.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.global.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.item.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.monster.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.entity.npc.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.player.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.entity.projectile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.food.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.inventory.ContainerListener.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
net.minecraft.world.inventory.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.item.alchemy.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.item.crafting.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.item.enchantment.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.item.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.item.trading.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.biome.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.chunk.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.chunk.storage.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.dimension.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.level.levelgen.feature.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.levelgen.flat.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.level.levelgen.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.levelgen.structure.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.level.levelgen.synth.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.material.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.newbiome.layer.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.pathfinder.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.redstone.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.level.saveddata.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.storage.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.level.tile.entity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.level.tile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.level.tile.piston.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.phys.h Initial commit 2026-03-01 12:16:08 +08:00
net.minecraft.world.scores.criteria.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
net.minecraft.world.scores.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NetherBridgeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NetherBridgeFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NetherBridgePieces.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NetherBridgePieces.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NetherrackTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NetherrackTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NetherSphere.cpp Initial commit 2026-03-01 12:16:08 +08:00
NetherSphere.h Initial commit 2026-03-01 12:16:08 +08:00
NetherStalkTile.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
NetherStalkTile.h Initial commit 2026-03-01 12:16:08 +08:00
NetherWartTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NetherWartTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Node.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Node.h Initial commit 2026-03-01 12:16:08 +08:00
NonTameRandomTargetGoal.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NonTameRandomTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NormalDimension.h Initial commit 2026-03-01 12:16:08 +08:00
NoteBlockTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NoteBlockTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NotGateTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NotGateTile.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Npc.cpp Initial commit 2026-03-01 12:16:08 +08:00
Npc.h Initial commit 2026-03-01 12:16:08 +08:00
NumberFormaters.h Initial commit 2026-03-01 12:16:08 +08:00
Objective.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Objective.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ObjectiveCriteria.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ObjectiveCriteria.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ObsidianTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
ObsidianTile.h Initial commit 2026-03-01 12:16:08 +08:00
OceanBiome.h Initial commit 2026-03-01 12:16:08 +08:00
Ocelot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Ocelot.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OcelotAttackGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OcelotAttackGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OcelotSitOnTileGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OcelotSitOnTileGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OfferFlowerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OfferFlowerGoal.h Initial commit 2026-03-01 12:16:08 +08:00
OldChunkStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OldChunkStorage.h Initial commit 2026-03-01 12:16:08 +08:00
OpenDoorGoal.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OpenDoorGoal.h Initial commit 2026-03-01 12:16:08 +08:00
OreFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OreFeature.h Initial commit 2026-03-01 12:16:08 +08:00
OreRecipies.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OreRecipies.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OreTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
OreTile.h Initial commit 2026-03-01 12:16:08 +08:00
OutputStream.h Initial commit 2026-03-01 12:16:08 +08:00
OwnableEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OwnerHurtByTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OwnerHurtByTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OwnerHurtTargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OwnerHurtTargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OxygenEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
OxygenEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
Ozelot.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Ozelot.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
OzelotAttackGoal.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
OzelotAttackGoal.h Initial commit 2026-03-01 12:16:08 +08:00
Packet.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
Packet.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
PacketListener.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PacketListener.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Painting.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Painting.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PanicGoal.cpp Fix animals stuck in panic state #514 (#519) 2026-03-05 14:23:56 +07:00
PanicGoal.h Fix animals stuck in panic state #514 (#519) 2026-03-05 14:23:56 +07:00
ParticleTypes.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Path.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Path.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
PathFinder.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PathFinder.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PathfinderMob.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PathfinderMob.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PathNavigation.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PathNavigation.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PerformanceTimer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PerformanceTimer.h Initial commit 2026-03-01 12:16:08 +08:00
PerlinNoise.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PerlinNoise.h Initial commit 2026-03-01 12:16:08 +08:00
PerlinSimplexNoise.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PerlinSimplexNoise.h Initial commit 2026-03-01 12:16:08 +08:00
PickaxeItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PickaxeItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Pig.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Pig.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PigZombie.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PigZombie.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PineFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PineFeature.h Initial commit 2026-03-01 12:16:08 +08:00
PistonBaseTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PistonBaseTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PistonExtensionTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PistonExtensionTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PistonMovingPiece.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PistonMovingPiece.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PistonPieceEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PistonPieceEntity.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
PistonTileItem.cpp Initial commit 2026-03-01 12:16:08 +08:00
PistonTileItem.h Initial commit 2026-03-01 12:16:08 +08:00
PlainsBiome.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlainsBiome.h Initial commit 2026-03-01 12:16:08 +08:00
Player.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Player.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerAbilitiesPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerAbilitiesPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerActionPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerActionPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerCommandPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerCommandPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerEnderChestContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerEnderChestContainer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerInfoPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerInfoPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerInputPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerInputPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerIO.h Max players from 8 -> 255 + small connection optimizations (#722) 2026-03-06 19:23:32 -06:00
PlayerSelector.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerTeam.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerTeam.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlaySoundCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PortalForcer.cpp Fix portal cache key to use chunk coordinates 2026-03-11 22:12:03 -05:00
PortalForcer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
PortalMaterial.h Initial commit 2026-03-01 12:16:08 +08:00
PortalTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PortalTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Pos.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Pos.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Position.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PositionImpl.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PotatoTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PotatoTile.h Initial commit 2026-03-01 12:16:08 +08:00
PotionBrewing.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PotionBrewing.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PotionItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PotionItem.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PoweredMetalTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PoweredMetalTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PoweredRailTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PoweredRailTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PreLoginPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
PreLoginPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PressurePlateTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PressurePlateTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PrimedTnt.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PrimedTnt.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ProgressListener.h Initial commit 2026-03-01 12:16:08 +08:00
Projectile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ProtectionEnchantment.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ProtectionEnchantment.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
PumpkinFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PumpkinFeature.h Initial commit 2026-03-01 12:16:08 +08:00
PumpkinTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PumpkinTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
QuartzBlockTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
QuartzBlockTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RailTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RailTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RainforestBiome.cpp Initial commit 2026-03-01 12:16:08 +08:00
RainforestBiome.h Initial commit 2026-03-01 12:16:08 +08:00
Random.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Random.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RandomLevelSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RandomLevelSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RandomLookAroundGoal.cpp Initial commit 2026-03-01 12:16:08 +08:00
RandomLookAroundGoal.h Initial commit 2026-03-01 12:16:08 +08:00
RandomPos.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RandomPos.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RandomScatteredLargeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RandomScatteredLargeFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RandomStrollGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RandomStrollGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RangedAttackGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RangedAttackGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RangedAttackMob.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RangedAttribute.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RangedAttribute.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Rarity.cpp Initial commit 2026-03-01 12:16:08 +08:00
Rarity.h Initial commit 2026-03-01 12:16:08 +08:00
Reader.h Initial commit 2026-03-01 12:16:08 +08:00
ReadMe.txt Initial commit 2026-03-01 12:16:08 +08:00
ReadOnlyChunkCache.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ReadOnlyChunkCache.h Initial commit 2026-03-01 12:16:08 +08:00
Recipes.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Recipes.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Recipy.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
RecordingItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RecordingItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RecordPlayerTile.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RecordPlayerTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RedlightTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RedlightTile.h Initial commit 2026-03-01 12:16:08 +08:00
Redstone.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Redstone.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RedStoneDustTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RedStoneDustTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RedStoneItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RedStoneItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RedStoneOreTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RedStoneOreTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ReedsFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ReedsFeature.h Initial commit 2026-03-01 12:16:08 +08:00
ReedTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ReedTile.h Initial commit 2026-03-01 12:16:08 +08:00
Reference.h Initial commit 2026-03-01 12:16:08 +08:00
Region.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Region.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RegionFile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RegionFile.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RegionFileCache.cpp Fixed DLC map loading / saving, missing chunks (#1114) 2026-03-10 22:04:19 -05:00
RegionFileCache.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RegionHillsLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RegionHillsLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RemoveEntitiesPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
RemoveEntitiesPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RemoveMobEffectPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RemoveMobEffectPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RepairContainer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RepairContainer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RepairMenu.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
RepairMenu.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RepairResultSlot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RepairResultSlot.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RepeaterTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RepeaterTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RespawnPacket.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
RespawnPacket.h detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
RestrictOpenDoorGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RestrictOpenDoorGoal.h Initial commit 2026-03-01 12:16:08 +08:00
RestrictSunGoal.cpp Initial commit 2026-03-01 12:16:08 +08:00
RestrictSunGoal.h Initial commit 2026-03-01 12:16:08 +08:00
ResultContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ResultContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
ResultSlot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ResultSlot.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RiverBiome.h Initial commit 2026-03-01 12:16:08 +08:00
RiverInitLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RiverInitLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RiverLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RiverLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RiverMixerLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
RiverMixerLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Rotate.cpp Initial commit 2026-03-01 12:16:08 +08:00
Rotate.h Initial commit 2026-03-01 12:16:08 +08:00
RotatedPillarTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RotatedPillarTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RotateHeadPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
RotateHeadPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RunAroundLikeCrazyGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RunAroundLikeCrazyGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SaddleItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SaddleItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SandFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SandFeature.h Initial commit 2026-03-01 12:16:08 +08:00
SandStoneTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SandStoneTile.h Initial commit 2026-03-01 12:16:08 +08:00
Sapling.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Sapling.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SaplingTileItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SaplingTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SavedData.cpp Initial commit 2026-03-01 12:16:08 +08:00
SavedData.h Initial commit 2026-03-01 12:16:08 +08:00
SavedDataStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SavedDataStorage.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Scale.cpp Initial commit 2026-03-01 12:16:08 +08:00
Scale.h Initial commit 2026-03-01 12:16:08 +08:00
ScatteredFeaturePieces.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ScatteredFeaturePieces.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Score.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Score.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Scoreboard.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Scoreboard.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ScoreboardSaveData.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ScoreHolder.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SeedFoodItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SeedFoodItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SeedItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SeedItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Sensing.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
Sensing.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ServerAuthDataPacket.h Initial commit 2026-03-01 12:16:08 +08:00
ServerSettingsChangedPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
ServerSettingsChangedPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServersideAttributeMap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServersideAttributeMap.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SetCarriedItemPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SetCarriedItemPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetCreativeModeSlotPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SetCreativeModeSlotPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetDisplayObjectivePacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetDisplayObjectivePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEntityDataPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEntityDataPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEntityLinkPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEntityLinkPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEntityMotionPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEntityMotionPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEquippedItemPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetEquippedItemPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetExperiencePacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SetExperiencePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetHealthPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetHealthPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetObjectivePacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SetObjectivePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetPlayerTeamPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetPlayerTeamPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetPlayerTimeoutCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SetRidingPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SetRidingPacket.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SetScorePacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SetScorePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetSpawnPositionPacket.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SetSpawnPositionPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SetTimePacket.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SetTimePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ShapedRecipy.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ShapedRecipy.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
ShapelessRecipy.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ShapelessRecipy.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
SharedConstants.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SharedConstants.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SharedKeyPacket.h Initial commit 2026-03-01 12:16:08 +08:00
SharedMonsterAttributes.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SharedMonsterAttributes.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ShearsItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ShearsItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Sheep.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Sheep.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ShoreLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ShoreLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ShortTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ShovelItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ShovelItem.h Initial commit 2026-03-01 12:16:08 +08:00
ShowSeedCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SignItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SignItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SignTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SignTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SignTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SignTileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SignUpdatePacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SignUpdatePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Silverfish.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Silverfish.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SimpleContainer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SimpleContainer.h Minor fixes 2026-03-03 06:14:34 +07:00
SimpleFoiledItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SimpleFoiledItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SimplexNoise.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SimplexNoise.h Initial commit 2026-03-01 12:16:08 +08:00
SitGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SitGoal.h Initial commit 2026-03-01 12:16:08 +08:00
Skeleton.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Skeleton.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkullItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SkullItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SkullTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SkullTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkullTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SkullTileEntity.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SkyIslandDimension.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Slime.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Slime.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Slot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Slot.h Minor fixes 2026-03-03 06:14:34 +07:00
SmallFireball.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SmallFireball.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SmoothFloat.cpp Initial commit 2026-03-01 12:16:08 +08:00
SmoothFloat.h Initial commit 2026-03-01 12:16:08 +08:00
SmoothLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SmoothLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SmoothStoneBrickTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SmoothStoneBrickTile.h Initial commit 2026-03-01 12:16:08 +08:00
SmoothStoneBrickTileItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SmoothStoneBrickTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SmoothZoomLayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SmoothZoomLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Snowball.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Snowball.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowballItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SnowballItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SnowItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowMan.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SnowMan.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowTile.h Initial commit 2026-03-01 12:16:08 +08:00
Socket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
Socket.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SocketAddress.h Initial commit 2026-03-01 12:16:08 +08:00
SoulSandTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SoulSandTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SoundTypes.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Source.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SparseDataStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SparseDataStorage.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SparseLightStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SparseLightStorage.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SpawnEggItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SpawnEggItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Spider.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Spider.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SpikeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SpikeFeature.h Initial commit 2026-03-01 12:16:08 +08:00
Sponge.cpp Initial commit 2026-03-01 12:16:08 +08:00
Sponge.h Initial commit 2026-03-01 12:16:08 +08:00
SpreadPlayersCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SpringFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SpringFeature.h Initial commit 2026-03-01 12:16:08 +08:00
SpringTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
SpringTile.h Initial commit 2026-03-01 12:16:08 +08:00
SpruceFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SpruceFeature.h Initial commit 2026-03-01 12:16:08 +08:00
Squid.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Squid.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StainedGlassBlock.cpp Revert "Fixed stained glass and glass pane not rendering the water and held item transparency for stained glass and pane (#748)" 2026-03-06 16:29:46 -06:00
StainedGlassBlock.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StainedGlassPaneBlock.cpp Revert "Fixed stained glass and glass pane not rendering the water and held item transparency for stained glass and pane (#748)" 2026-03-06 16:29:46 -06:00
StainedGlassPaneBlock.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StairTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StairTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Stat.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
Stat.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
StatFormatter.h Initial commit 2026-03-01 12:16:08 +08:00
Stats.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Stats.h Initial commit 2026-03-01 12:16:08 +08:00
stdafx.cpp Initial commit 2026-03-01 12:16:08 +08:00
stdafx.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
StemTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StemTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StoneButtonTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StoneButtonTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StoneMonsterTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StoneMonsterTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
StoneMonsterTileItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
StoneMonsterTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
StoneSlabTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StoneSlabTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
StoneSlabTileItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StoneSlabTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
StoneTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StoneTile.h Initial commit 2026-03-01 12:16:08 +08:00
StringHelpers.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StringHelpers.h Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
StringTag.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StrongholdFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StrongholdFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StrongholdPieces.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StrongholdPieces.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StructureFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StructureFeature.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
StructureFeatureIO.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StructureFeatureIO.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StructureFeatureSavedData.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
StructureFeatureSavedData.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StructurePiece.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StructurePiece.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StructureRecipies.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StructureRecipies.h Initial commit 2026-03-01 12:16:08 +08:00
StructureStart.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StructureStart.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SwampBiome.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SwampBiome.h Initial commit 2026-03-01 12:16:08 +08:00
SwampRiversLayer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SwampRiversLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SwampTreeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SwampTreeFeature.h Initial commit 2026-03-01 12:16:08 +08:00
SwellGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SwellGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SynchedEntityData.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
SynchedEntityData.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Synth.cpp Initial commit 2026-03-01 12:16:08 +08:00
Synth.h Initial commit 2026-03-01 12:16:08 +08:00
system.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
System.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Tag.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
Tag.h win cpp23 compat: Minecraft.World 2026-03-07 23:58:21 +07:00
TaigaBiome.cpp Initial commit 2026-03-01 12:16:08 +08:00
TaigaBiome.h Initial commit 2026-03-01 12:16:08 +08:00
TakeFlowerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TakeFlowerGoal.h Initial commit 2026-03-01 12:16:08 +08:00
TakeItemEntityPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
TakeItemEntityPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TallGrass.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TallGrass.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TallGrassFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TallGrassFeature.h Initial commit 2026-03-01 12:16:08 +08:00
TamableAnimal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TamableAnimal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TargetGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TargetGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Team.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Team.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TeleportEntityPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TeleportEntityPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TemperatureLayer.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TemperatureLayer.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TemperatureMixerLayer.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TemperatureMixerLayer.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TemptGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TemptGoal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TextureAndGeometryChangePacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureAndGeometryChangePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureAndGeometryPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
TextureAndGeometryPacket.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TextureChangePacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureChangePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TexturePacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
TexturePacket.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TheEndBiome.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndBiome.h Initial commit 2026-03-01 12:16:08 +08:00
TheEndBiomeDecorator.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndBiomeDecorator.h Initial commit 2026-03-01 12:16:08 +08:00
TheEndDimension.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndDimension.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
TheEndLevelRandomLevelSource.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndLevelRandomLevelSource.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
TheEndPortal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndPortal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TheEndPortalFrameTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndPortalFrameTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TheEndPortalTileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndPortalTileEntity.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ThinFenceTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ThinFenceTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ThornsEnchantment.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ThornsEnchantment.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ThreadName.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ThreadName.h Initial commit 2026-03-01 12:16:08 +08:00
Throwable.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Throwable.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ThrownEgg.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ThrownEgg.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ThrownEnderpearl.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ThrownEnderpearl.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ThrownExpBottle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ThrownExpBottle.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ThrownPotion.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ThrownPotion.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TickNextTickData.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TickNextTickData.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Tile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Tile.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
TileDestructionPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TileDestructionPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEditorOpenPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TileEditorOpenPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TileEntityDataPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEntityDataPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEventData.cpp Initial commit 2026-03-01 12:16:08 +08:00
TileEventData.h Initial commit 2026-03-01 12:16:08 +08:00
TileEventPacket.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TileEventPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TilePlanterItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TilePlanterItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TilePos.cpp Initial commit 2026-03-01 12:16:08 +08:00
TilePos.h Further C-style struct definitions fixes 2026-03-02 15:11:05 +07:00
TileUpdatePacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileUpdatePacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TimeCommand.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TimeCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TntTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TntTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ToggleDownfallCommand.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ToggleDownfallCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ToolRecipies.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ToolRecipies.h Initial commit 2026-03-01 12:16:08 +08:00
TopSnowTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TopSnowTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TorchTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TorchTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TownFeature.h Initial commit 2026-03-01 12:16:08 +08:00
TradeItemPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
TradeItemPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TradeWithPlayerGoal.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TradeWithPlayerGoal.h Initial commit 2026-03-01 12:16:08 +08:00
TransparentTile.cpp Initial commit 2026-03-01 12:16:08 +08:00
TransparentTile.h Initial commit 2026-03-01 12:16:08 +08:00
TrapDoorTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TrapDoorTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TrapMenu.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TrapMenu.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TreeFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TreeFeature.h Initial commit 2026-03-01 12:16:08 +08:00
TreeTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TreeTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TreeTileItem.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TreeTileItem.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TripWireSourceTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TripWireSourceTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TripWireTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TripWireTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
UntouchingEnchantment.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
UntouchingEnchantment.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
UpdateAttributesPacket.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
UpdateAttributesPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
UpdateGameRuleProgressPacket.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
UpdateGameRuleProgressPacket.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
UpdateMobEffectPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
UpdateMobEffectPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
UpdateProgressPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
UpdateProgressPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
UseAnim.h Initial commit 2026-03-01 12:16:08 +08:00
UseItemPacket.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
UseItemPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Vec3.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Vec3.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Village.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Village.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillageFeature.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VillageFeature.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagePieces.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VillagePieces.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Villager.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Villager.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerGolem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VillagerGolem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Villages.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Villages.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
VillageSiege.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VillageSiege.h Initial commit 2026-03-01 12:16:08 +08:00
VinesFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VinesFeature.h Initial commit 2026-03-01 12:16:08 +08:00
VineTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VineTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
VoronoiZoom.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
VoronoiZoom.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
WallTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WallTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
WaterAnimal.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WaterAnimal.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WaterColor.cpp Initial commit 2026-03-01 12:16:08 +08:00
WaterColor.h Initial commit 2026-03-01 12:16:08 +08:00
WaterLevelChunk.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WaterLevelChunk.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
WaterlilyFeature.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WaterlilyFeature.h Initial commit 2026-03-01 12:16:08 +08:00
WaterLilyTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WaterLilyTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
WaterLilyTileItem.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WaterLilyTileItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WaterWorkerEnchantment.cpp Initial commit 2026-03-01 12:16:08 +08:00
WaterWorkerEnchantment.h Initial commit 2026-03-01 12:16:08 +08:00
WeaponItem.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WeaponItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WeaponRecipies.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WeaponRecipies.h Initial commit 2026-03-01 12:16:08 +08:00
WeatherCommand.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WebMaterial.h Initial commit 2026-03-01 12:16:08 +08:00
WebTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WebTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
WeighedRandom.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WeighedRandom.h Initial commit 2026-03-01 12:16:08 +08:00
WeighedTreasure.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WeighedTreasure.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WeightedPressurePlateTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WeightedPressurePlateTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Witch.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Witch.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitherBoss.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WitherBoss.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitherSkull.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WitherSkull.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Wolf.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Wolf.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WoodButtonTile.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WoodButtonTile.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WoodSlabTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WoodSlabTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
WoodTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WoodTile.h Initial commit 2026-03-01 12:16:08 +08:00
WoolCarpetTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WoolCarpetTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
WoolTileItem.cpp Fix Stained Glass being wrong colors (#529) 2026-03-06 09:35:40 -06:00
WoolTileItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WorkbenchTile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WorkbenchTile.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
WorldlyContainer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WrittenBookItem.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
XZPacket.cpp Initial commit 2026-03-01 12:16:08 +08:00
XZPacket.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Zombie.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Zombie.h Fixed baby zombie hitbox size (#765) 2026-03-06 18:45:22 -06:00
ZonedChunkStorage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ZonedChunkStorage.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ZoneFile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ZoneFile.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ZoneIo.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ZoneIo.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ZoomLayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ZoomLayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00

========================================================================
    STATIC LIBRARY : Minecraft.World Project Overview
========================================================================

AppWizard has created this Minecraft.World library project for you. 

This file contains a summary of what you will find in each of the files that
make up your Minecraft.World application.

Minecraft.World.vcxproj
    This is the main project file for VC++ projects generated using an Application Wizard. 
    It contains information about the version of Visual C++ that generated the file, and 
    information about the platforms, configurations, and project features selected with the
    Application Wizard.



/////////////////////////////////////////////////////////////////////////////

StdAfx.h, StdAfx.cpp
    These files are used to build a precompiled header (PCH) file
    named Minecraft.World.pch and a precompiled types file named StdAfx.obj.

/////////////////////////////////////////////////////////////////////////////
Other notes:

AppWizard uses "TODO:" comments to indicate parts of the source code you
should add to or customize.

/////////////////////////////////////////////////////////////////////////////