aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Windows64/Windows64_App.h
AgeCommit message (Collapse)Author
13 daysModernize project codebase (#906)ModMaker101
* Fixed boats falling and a TP glitch #266 * Replaced every C-style cast with C++ ones * Replaced every C-style cast with C++ ones * Fixed boats falling and a TP glitch #266 * Updated NULL to nullptr and fixing some type issues * Modernized and fixed a few bugs - Replaced most instances of `NULL` with `nullptr`. - Replaced most `shared_ptr(new ...)` with `make_shared`. - Removed the `nullptr` macro as it was interfering with the actual nullptr keyword in some instances. * Fixing more conflicts * Replace int loops with size_t and start work on overrides * Add safety checks and fix a issue with vector going OOR
2026-03-07Revert "Project modernization (#630)"Loki Rautio
This code was not tested and breaks in Release builds, reverting to restore functionality of the nightly. All in-game menus do not work and generating a world crashes. This reverts commit a9be52c41a02d207233199e98898fe7483d7e817.
2026-03-08Project modernization (#630)ModMaker101
* Fixed boats falling and a TP glitch #266 * Replaced every C-style cast with C++ ones * Replaced every C-style cast with C++ ones * Fixed boats falling and a TP glitch #266 * Updated NULL to nullptr and fixing some type issues * Modernized and fixed a few bugs - Replaced most instances of `NULL` with `nullptr`. - Replaced most `shared_ptr(new ...)` with `make_shared`. - Removed the `nullptr` macro as it was interfering with the actual nullptr keyword in some instances. * Fixing more conflicts * Replace int loops with size_t and start work on overrides
2026-03-04Update username logic and implement latest LCEMP changes (#311)Slenderman
* Update username logic and implement latest LCEMP changes * Update old reference * Fix tutorial world crash * Restore deleted comment
2026-03-03Fix player save data issue & multiple username implementations (#257)Slenderman
* fix saving issue & multiple username implementations * Update README.md Updated the method for overriding in-game username from '-name' to 'username.txt'. * remove unused include i forgot to get rid of while testing
2026-03-03Revert "Revert "Win64: configurable username (username.txt) and persistent ↵void_17
ga…" (#235) This reverts commit 7f7d99501cf87fcc234a5d3af453e7e0642f96a3.
2026-03-03Revert "Win64: configurable username (username.txt) and persistent game ↵void_17
setti…" (#234) This reverts commit b8a7f816b52775fdcfb3503f0000accb8cd65765.
2026-03-03Win64: configurable username (username.txt) and persistent game settings ↵dtentiion
(settings.dat) (#195)
2026-03-01Windows: More proper shutdownAPAmk2
2026-03-01Initial commitdaoge_cmd