mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-25 08:30:13 +00:00
- Upgrade from C++17 to C++20 - Remove unused helper functions (selectSpawnPreset, parseVec3Csv, parseYawPitchCsv) - Mark unused parameters with [[maybe_unused]] attribute - Remove unused variables (nameColor, currentRace, steppingUp, steppingDown, awayFromWallMotion) - Fix all -Wunused-* warnings Build now completes with zero warnings.
15 lines
279 B
C++
15 lines
279 B
C++
#include "game/world.hpp"
|
|
|
|
namespace wowee {
|
|
namespace game {
|
|
|
|
void World::update([[maybe_unused]] float deltaTime) {
|
|
// TODO: Update world state
|
|
}
|
|
|
|
void World::loadMap([[maybe_unused]] uint32_t mapId) {
|
|
// TODO: Load map data
|
|
}
|
|
|
|
} // namespace game
|
|
} // namespace wowee
|