neoLegacy/Minecraft.Client
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
..
Common detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
Durango Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DurangoMedia Remove some leftover files (#881) 2026-03-12 12:48:06 +00:00
music Replace .ogg music with their Java edition counterparts (#677) 2026-03-06 00:42:55 -06:00
Orbis Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OrbisMedia Initial commit 2026-03-01 12:16:08 +08:00
PS3 Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PS3_GAME Initial commit 2026-03-01 12:16:08 +08:00
PS3Media Initial commit 2026-03-01 12:16:08 +08:00
PS4_GAME Initial commit 2026-03-01 12:16:08 +08:00
PSVita Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PSVitaMedia feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
redist64 Initial commit 2026-03-01 12:16:08 +08:00
sce_sys feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TROPDIR/NPWR05636_00 Initial commit 2026-03-01 12:16:08 +08:00
Windows64 Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
Windows64Media detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
Xbox Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
.clangd Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
AbstractContainerScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AbstractContainerScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07: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
AbstractTexturePack.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AbstractTexturePack.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AchievementPopup.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AchievementPopup.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
AchievementScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
AchievementScreen.h Initial commit 2026-03-01 12:16:08 +08:00
AllowAllCuller.cpp Initial commit 2026-03-01 12:16:08 +08:00
AllowAllCuller.h Initial commit 2026-03-01 12:16:08 +08:00
alphaTest.png Initial commit 2026-03-01 12:16:08 +08:00
ArchiveFile.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ArchiveFile.h Initial commit 2026-03-01 12:16:08 +08:00
ArrowRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ArrowRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BatModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BatModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BatRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BatRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BeaconRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BeaconRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BlazeModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BlazeModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BlazeRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BlazeRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BoatModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BoatModel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
BoatRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BoatRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BookModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BookModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BossMobGuiInfo.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BossMobGuiInfo.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
BreakingItemParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BreakingItemParticle.h Initial commit 2026-03-01 12:16:08 +08:00
BubbleParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BubbleParticle.h Initial commit 2026-03-01 12:16:08 +08:00
BufferedImage.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
BufferedImage.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Button.cpp Initial commit 2026-03-01 12:16:08 +08:00
Button.h Initial commit 2026-03-01 12:16:08 +08:00
Camera.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Camera.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CaveSpiderRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CaveSpiderRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChatScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChatScreen.h Add Chat / Pastes / Formatting (#682) 2026-03-06 09:52:28 -06:00
ChestModel.cpp Initial commit 2026-03-01 12:16:08 +08:00
ChestModel.h Initial commit 2026-03-01 12:16:08 +08:00
ChestRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChestRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChickenModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ChickenModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChickenRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ChickenRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Chunk.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
Chunk.h Fix Chunk destructor segfault using smart pointers #112 (#414) 2026-03-04 22:43:29 +07:00
ClassDiagram.cd Initial commit 2026-03-01 12:16:08 +08:00
ClientConnection.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
ClientConnection.h Split screen, widescreen support, font rendering fixes, ui scaling fixes (#767) 2026-03-08 15:49:50 -05:00
ClientConstants.cpp set default values 2026-03-12 05:19:39 -05:00
ClientConstants.h Gives option to remove the top-left watermark in ClientConstants.cpp: 2026-03-11 23:56:22 -05:00
ClockTexture.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ClockTexture.h Initial commit 2026-03-01 12:16:08 +08:00
CompassTexture.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CompassTexture.h Initial commit 2026-03-01 12:16:08 +08:00
compat_shims.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
compile_flags.txt Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
ConfirmScreen.cpp Initial commit 2026-03-01 12:16:08 +08:00
ConfirmScreen.h Initial commit 2026-03-01 12:16:08 +08:00
ConnectScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ConnectScreen.h Initial commit 2026-03-01 12:16:08 +08:00
ConsoleInput.cpp Initial commit 2026-03-01 12:16:08 +08:00
ConsoleInput.h Initial commit 2026-03-01 12:16:08 +08:00
ConsoleInputSource.h Initial commit 2026-03-01 12:16:08 +08:00
ContainerScreen.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ContainerScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ControlsScreen.cpp Initial commit 2026-03-01 12:16:08 +08:00
ControlsScreen.h Initial commit 2026-03-01 12:16:08 +08:00
CowModel.cpp Initial commit 2026-03-01 12:16:08 +08:00
CowModel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CowRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CowRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CraftingScreen.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CraftingScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CreateWorldScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CreateWorldScreen.h Initial commit 2026-03-01 12:16:08 +08:00
CreativeMode.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CreativeMode.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CreeperModel.cpp fix creeper model y offset (#504) 2026-03-05 14:16:18 +07:00
CreeperModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CreeperRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CreeperRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
CritParticle.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CritParticle.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
CritParticle2.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
CritParticle2.h Initial commit 2026-03-01 12:16:08 +08:00
crt_compat.cpp Initial commit 2026-03-01 12:16:08 +08:00
Cube.cpp Initial commit 2026-03-01 12:16:08 +08:00
Cube.h Initial commit 2026-03-01 12:16:08 +08:00
Culler.h Initial commit 2026-03-01 12:16:08 +08:00
DeathScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DeathScreen.h Initial commit 2026-03-01 12:16:08 +08:00
DefaultRenderer.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DefaultRenderer.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DefaultTexturePack.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DefaultTexturePack.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DemoLevel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DemoLevel.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DemoMode.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
DemoMode.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DemoUser.cpp Initial commit 2026-03-01 12:16:08 +08:00
DemoUser.h Initial commit 2026-03-01 12:16:08 +08:00
DerivedServerLevel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DerivedServerLevel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DirtyChunkSorter.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DirtyChunkSorter.h win cpp23 compat: Minecraft.Client 2026-03-07 23:58:51 +07:00
DisconnectedScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DisconnectedScreen.h Initial commit 2026-03-01 12:16:08 +08:00
DispenserBootstrap.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DispenserBootstrap.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DistanceChunkSorter.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
DistanceChunkSorter.h win cpp23 compat: Minecraft.Client 2026-03-07 23:58:51 +07:00
DLCTexturePack.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DLCTexturePack.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DragonBreathParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DragonBreathParticle.h Initial commit 2026-03-01 12:16:08 +08:00
DragonModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DragonModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
DripParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
DripParticle.h Initial commit 2026-03-01 12:16:08 +08:00
EchantmentTableParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EchantmentTableParticle.h Initial commit 2026-03-01 12:16:08 +08:00
EditBox.cpp Initial commit 2026-03-01 12:16:08 +08:00
EditBox.h Initial commit 2026-03-01 12:16:08 +08:00
EnchantTableRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnchantTableRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderChestRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderChestRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderCrystalModel.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EnderCrystalModel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
EnderCrystalRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderCrystalRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderDragonRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderDragonRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EndermanModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EndermanModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EndermanRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EndermanRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EnderParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EnderParticle.h Initial commit 2026-03-01 12:16:08 +08:00
EntityRenderDispatcher.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityRenderDispatcher.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityTileRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityTileRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
EntityTracker.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
EntityTracker.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ErrorScreen.cpp Initial commit 2026-03-01 12:16:08 +08:00
ErrorScreen.h Initial commit 2026-03-01 12:16:08 +08:00
examples.msscmp Initial commit 2026-03-01 12:16:08 +08:00
examples_64.msscmp Initial commit 2026-03-01 12:16:08 +08:00
examples_win.msscmp Initial commit 2026-03-01 12:16:08 +08:00
ExperienceOrbRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ExperienceOrbRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ExplodeParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ExplodeParticle.h Initial commit 2026-03-01 12:16:08 +08:00
extraX64client.h Initial commit 2026-03-01 12:16:08 +08:00
Extrax64Stubs.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FallingTileRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FallingTileRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FileTexturePack.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FileTexturePack.h Initial commit 2026-03-01 12:16:08 +08:00
FireballRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireballRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FireworksParticles.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FireworksParticles.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FishingHookRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FishingHookRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
FlameParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FlameParticle.h Initial commit 2026-03-01 12:16:08 +08:00
FolderTexturePack.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FolderTexturePack.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Font.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Font.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FootstepParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
FootstepParticle.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Frustum.cpp Initial commit 2026-03-01 12:16:08 +08:00
Frustum.h Initial commit 2026-03-01 12:16:08 +08:00
FrustumCuller.cpp Initial commit 2026-03-01 12:16:08 +08:00
FrustumCuller.h Initial commit 2026-03-01 12:16:08 +08:00
FrustumData.cpp Initial commit 2026-03-01 12:16:08 +08:00
FrustumData.h Initial commit 2026-03-01 12:16:08 +08:00
FurnaceScreen.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
FurnaceScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
GameMode.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
GameMode.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
GameRenderer.cpp Fix split-screen UI wrong positioning on window resize (#989) 2026-03-08 22:16:58 -05:00
GameRenderer.h Improve gamma shader parity - fixes #611 (#790) 2026-03-07 03:00:38 -06:00
GhastModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GhastModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GhastRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GhastRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GiantMobRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
GiantMobRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
glWrapper.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Gui.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
Gui.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GuiComponent.cpp Add Chat / Pastes / Formatting (#682) 2026-03-06 09:52:28 -06:00
GuiComponent.h Add Chat / Pastes / Formatting (#682) 2026-03-06 09:52:28 -06:00
GuiMessage.cpp Initial commit 2026-03-01 12:16:08 +08:00
GuiMessage.h Initial commit 2026-03-01 12:16:08 +08:00
GuiParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
GuiParticle.h Initial commit 2026-03-01 12:16:08 +08:00
GuiParticles.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
GuiParticles.h Initial commit 2026-03-01 12:16:08 +08:00
HeartParticle.cpp Initial commit 2026-03-01 12:16:08 +08:00
HeartParticle.h Initial commit 2026-03-01 12:16:08 +08:00
HorseRenderer.cpp Fix horse rendering: culling when looking up + fire debug texture (#899) 2026-03-07 22:30:44 -06:00
HorseRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HttpTexture.cpp Initial commit 2026-03-01 12:16:08 +08:00
HttpTexture.h Initial commit 2026-03-01 12:16:08 +08:00
HttpTextureProcessor.h Initial commit 2026-03-01 12:16:08 +08:00
HugeExplosionParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HugeExplosionParticle.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HugeExplosionSeedParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HugeExplosionSeedParticle.h Initial commit 2026-03-01 12:16:08 +08:00
HumanoidMobRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HumanoidMobRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
HumanoidModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
HumanoidModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
InBedChatScreen.cpp Initial commit 2026-03-01 12:16:08 +08:00
InBedChatScreen.h Initial commit 2026-03-01 12:16:08 +08:00
Input.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Input.h refactor: refactor KBM input code 2026-03-05 01:12:48 +08:00
InventoryScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
InventoryScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
iob_shim.asm feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ItemFrameRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemFrameRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ItemInHandRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemInHandRenderer.h Fix stale held item appearing when switching worlds (#910) 2026-03-09 03:12:49 +08:00
ItemRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ItemSpriteRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ItemSpriteRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
JoinMultiplayerScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
JoinMultiplayerScreen.h Initial commit 2026-03-01 12:16:08 +08:00
KeyMapping.cpp Initial commit 2026-03-01 12:16:08 +08:00
KeyMapping.h Initial commit 2026-03-01 12:16:08 +08:00
LargeChestModel.cpp Initial commit 2026-03-01 12:16:08 +08:00
LargeChestModel.h Initial commit 2026-03-01 12:16:08 +08:00
LavaParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LavaParticle.h Initial commit 2026-03-01 12:16:08 +08:00
LavaSlimeModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LavaSlimeModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LavaSlimeRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LavaSlimeRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LeashKnotModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LeashKnotModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LeashKnotRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LeashKnotRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LevelRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LevelRenderer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
Lighting.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Lighting.h Initial commit 2026-03-01 12:16:08 +08:00
LightningBoltRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LightningBoltRenderer.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
LivingEntityRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LivingEntityRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
LocalPlayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
LocalPlayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
MemoryTracker.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
MemoryTracker.h Initial commit 2026-03-01 12:16:08 +08:00
MemTexture.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MemTexture.h Initial commit 2026-03-01 12:16:08 +08:00
MemTextureProcessor.h Initial commit 2026-03-01 12:16:08 +08:00
MinecartModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartModel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MinecartRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MinecartRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartSpawnerRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MinecartSpawnerRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Minecraft.Client.vcxproj Change F3 rendering and add git version information (#836) 2026-03-07 13:55:44 -06:00
Minecraft.Client.vcxproj.filters Fix PCH (#828) 2026-03-07 20:21:37 +07:00
Minecraft.Client.vcxproj.vspscc Initial commit 2026-03-01 12:16:08 +08:00
Minecraft.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Minecraft.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Minecraft.msscmp Initial commit 2026-03-01 12:16:08 +08:00
MinecraftServer.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
MinecraftServer.h detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
Minimap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Minimap.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
MobRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MobSkinMemTextureProcessor.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobSkinMemTextureProcessor.h Initial commit 2026-03-01 12:16:08 +08:00
MobSkinTextureProcessor.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobSkinTextureProcessor.h Initial commit 2026-03-01 12:16:08 +08:00
MobSpawnerRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MobSpawnerRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Model.cpp Initial commit 2026-03-01 12:16:08 +08:00
Model.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ModelHorse.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ModelHorse.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ModelPart.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ModelPart.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MultiPlayerChunkCache.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MultiPlayerChunkCache.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MultiPlayerGameMode.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MultiPlayerGameMode.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MultiPlayerLevel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MultiPlayerLevel.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
MultiPlayerLocalPlayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MultiPlayerLocalPlayer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
MushroomCowRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
MushroomCowRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
NameEntryScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NameEntryScreen.h Initial commit 2026-03-01 12:16:08 +08:00
NetherPortalParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NetherPortalParticle.h Initial commit 2026-03-01 12:16:08 +08:00
Network Implementation Notes.txt Initial commit 2026-03-01 12:16:08 +08:00
NoteParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
NoteParticle.h Initial commit 2026-03-01 12:16:08 +08:00
OcelotModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OcelotModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OcelotRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OcelotRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
OffsettedRenderList.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OffsettedRenderList.h Initial commit 2026-03-01 12:16:08 +08:00
Options.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Options.h Initial commit 2026-03-01 12:16:08 +08:00
OptionsScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
OptionsScreen.h Initial commit 2026-03-01 12:16:08 +08:00
OzelotModel.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
OzelotModel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
OzelotRenderer.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
OzelotRenderer.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
PaintingRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PaintingRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Particle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Particle.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ParticleEngine.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ParticleEngine.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PauseScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PauseScreen.h Initial commit 2026-03-01 12:16:08 +08:00
PendingConnection.cpp Reject duplicate UIDs on login and remove noisy gdraw debug log (#1013) 2026-03-08 23:10:00 -05:00
PendingConnection.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PigModel.cpp Initial commit 2026-03-01 12:16:08 +08:00
PigModel.h Initial commit 2026-03-01 12:16:08 +08:00
PigRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PigRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PistonPieceRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PistonPieceRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
PlayerChunkMap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerChunkMap.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
PlayerCloudParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerCloudParticle.h Initial commit 2026-03-01 12:16:08 +08:00
PlayerConnection.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
PlayerConnection.h detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
PlayerInfo.h Initial commit 2026-03-01 12:16:08 +08:00
PlayerList.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
PlayerList.h detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
PlayerRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PlayerRenderer.h Max players from 8 -> 255 + small connection optimizations (#722) 2026-03-06 19:23:32 -06:00
Polygon.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Polygon.h Initial commit 2026-03-01 12:16:08 +08:00
postbuild.ps1 Change F3 rendering and add git version information (#836) 2026-03-07 13:55:44 -06:00
prebuild.ps1 Always show version overlay, add more info 2026-03-09 03:25:05 -05:00
PreStitchedTextureMap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
PreStitchedTextureMap.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ProgressRenderer.cpp Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ProgressRenderer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
QuadrupedModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
QuadrupedModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ReadMe.txt Initial commit 2026-03-01 12:16:08 +08:00
ReceivingLevelScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ReceivingLevelScreen.h Initial commit 2026-03-01 12:16:08 +08:00
Rect2i.cpp Initial commit 2026-03-01 12:16:08 +08:00
Rect2i.h Initial commit 2026-03-01 12:16:08 +08:00
RedDustParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RedDustParticle.h Initial commit 2026-03-01 12:16:08 +08:00
RemotePlayer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RemotePlayer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
RenameWorldScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
RenameWorldScreen.h Initial commit 2026-03-01 12:16:08 +08:00
ResourceLocation.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Screen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Screen.h Add Chat / Pastes / Formatting (#682) 2026-03-06 09:52:28 -06:00
ScreenSizeCalculator.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ScreenSizeCalculator.h Initial commit 2026-03-01 12:16:08 +08:00
ScrolledSelectionList.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ScrolledSelectionList.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
SelectWorldScreen.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
SelectWorldScreen.h Initial commit 2026-03-01 12:16:08 +08:00
ServerChunkCache.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServerChunkCache.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ServerCommandDispatcher.cpp Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
ServerCommandDispatcher.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
ServerConnection.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServerConnection.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ServerInterface.h Initial commit 2026-03-01 12:16:08 +08:00
ServerLevel.cpp Port over RCE Patches from LCEMP (#1023) 2026-03-09 06:53:08 -05:00
ServerLevel.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ServerLevelListener.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServerLevelListener.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ServerPlayer.cpp detailed summary of every changed file: 2026-03-13 06:56:46 -05:00
ServerPlayer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
ServerPlayerGameMode.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServerPlayerGameMode.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServerScoreboard.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ServerScoreboard.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Settings.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Settings.h feat: headless server 2026-03-04 17:29:43 +08:00
SheepFurModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SheepFurModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SheepModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SheepModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SheepRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SheepRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SignModel.cpp Initial commit 2026-03-01 12:16:08 +08:00
SignModel.h Initial commit 2026-03-01 12:16:08 +08:00
SignRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SignRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SilverfishModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SilverfishModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SilverfishRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SilverfishRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SimpleIcon.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SimpleIcon.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkeletonHeadModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkeletonHeadModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkeletonModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkeletonModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkeletonRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkeletonRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkiModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkiModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SkinBox.h Initial commit 2026-03-01 12:16:08 +08:00
SkullTileRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SkullTileRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SlideButton.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SlideButton.h Initial commit 2026-03-01 12:16:08 +08:00
SlimeModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SlimeModel.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SlimeRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SlimeRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SmallButton.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SmallButton.h Initial commit 2026-03-01 12:16:08 +08:00
SmokeParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SmokeParticle.h Initial commit 2026-03-01 12:16:08 +08:00
SnowManModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowManModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowManRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SnowManRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SnowShovelParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SnowShovelParticle.h Initial commit 2026-03-01 12:16:08 +08:00
SpellParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SpellParticle.h Initial commit 2026-03-01 12:16:08 +08:00
SpiderModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SpiderModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SpiderRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SpiderRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SplashParticle.cpp Initial commit 2026-03-01 12:16:08 +08:00
SplashParticle.h Initial commit 2026-03-01 12:16:08 +08:00
SquidModel.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SquidModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SquidRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
SquidRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
StatsCounter.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StatsCounter.h Initial commit 2026-03-01 12:16:08 +08:00
StatsScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StatsScreen.h Initial commit 2026-03-01 12:16:08 +08:00
StatsSyncher.cpp Initial commit 2026-03-01 12:16:08 +08:00
StatsSyncher.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 Gives option to remove the top-left watermark in ClientConstants.cpp: 2026-03-11 23:56:22 -05:00
StitchedTexture.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StitchedTexture.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Stitcher.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Stitcher.h Initial commit 2026-03-01 12:16:08 +08:00
StitchSlot.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
StitchSlot.h Remove AUTO_VAR macro and _toString function (#592) 2026-03-06 02:11:18 +07:00
StringTable.cpp Split screen, widescreen support, font rendering fixes, ui scaling fixes (#767) 2026-03-08 15:49:50 -05:00
StringTable.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
stubs.cpp refactor: refactor KBM input code 2026-03-05 01:12:48 +08:00
stubs.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SurvivalMode.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SurvivalMode.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
SuspendedParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SuspendedParticle.h Initial commit 2026-03-01 12:16:08 +08:00
SuspendedTownParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
SuspendedTownParticle.h Initial commit 2026-03-01 12:16:08 +08:00
TakeAnimationParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TakeAnimationParticle.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TeleportCommand.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TeleportCommand.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TerrainParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TerrainParticle.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Tesselator.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Tesselator.h Initial commit 2026-03-01 12:16:08 +08:00
TexOffs.cpp Initial commit 2026-03-01 12:16:08 +08:00
TexOffs.h Initial commit 2026-03-01 12:16:08 +08:00
TextEditScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextEditScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
Texture.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Texture.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureAtlas.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TextureAtlas.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TextureHolder.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureHolder.h Further C-style struct definitions fixes 2026-03-02 15:11:05 +07:00
TextureManager.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureManager.h Initial commit 2026-03-01 12:16:08 +08:00
TextureMap.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TextureMap.h Initial commit 2026-03-01 12:16:08 +08:00
TexturePack.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TexturePack.h Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TexturePackRepository.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TexturePackRepository.h Initial commit 2026-03-01 12:16:08 +08:00
Textures.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Textures.h win cpp23 compat: Minecraft.Client 2026-03-07 23:58:51 +07:00
TheEndPortalRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TheEndPortalRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
thumbnailTest64.png Initial commit 2026-03-01 12:16:08 +08:00
thumbnailTest128.png Initial commit 2026-03-01 12:16:08 +08:00
thumbnailTest256.png Initial commit 2026-03-01 12:16:08 +08:00
thumbnailTest1280.png Initial commit 2026-03-01 12:16:08 +08:00
TileEntityRenderDispatcher.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEntityRenderDispatcher.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TileEntityRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileEntityRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TileRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TileRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
Timer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
Timer.h Remove all MSVC __int64 (#742) 2026-03-07 03:31:30 +07:00
TitleScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TitleScreen.h Initial commit 2026-03-01 12:16:08 +08:00
TntMinecartRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TntMinecartRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TntRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TntRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TrackedEntity.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
TrackedEntity.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
TrapScreen.cpp Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
TrapScreen.h Revert "shared_ptr -> std::shared_ptr" 2026-03-02 17:37:16 +07:00
User.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
User.h Initial commit 2026-03-01 12:16:08 +08:00
Vertex.cpp Initial commit 2026-03-01 12:16:08 +08:00
Vertex.h Initial commit 2026-03-01 12:16:08 +08:00
VideoSettingsScreen.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VideoSettingsScreen.h Initial commit 2026-03-01 12:16:08 +08:00
ViewportCuller.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ViewportCuller.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerGolemModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerGolemModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerGolemRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VillagerGolemRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
VillagerRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerZombieModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
VillagerZombieModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WaterDropParticle.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WaterDropParticle.h Initial commit 2026-03-01 12:16:08 +08:00
WitchModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitchModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitchRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WitchRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitherBossModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitherBossModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitherBossRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WitherBossRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WitherSkullRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
WitherSkullRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WolfModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WolfModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WolfRenderer.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WolfRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
WstringLookup.cpp Initial commit 2026-03-01 12:16:08 +08:00
WstringLookup.h Initial commit 2026-03-01 12:16:08 +08:00
ZombieModel.cpp feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ZombieModel.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00
ZombieRenderer.cpp Modernize project codebase (#906) 2026-03-08 18:08:36 -05:00
ZombieRenderer.h feat: TU19 (Dec 2014) Features & Content (#155) 2026-03-03 03:04:10 +08:00

========================================================================
    Xbox 360 APPLICATION : Minecraft.Client Project Overview
========================================================================

AppWizard has created this Minecraft.Client application for you.  

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

Minecraft.Client.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.

Minecraft.Client.cpp
    This is the main application source file.



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

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

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