2026-02-02 12:24:50 -08:00
|
|
|
#include "game/world.hpp"
|
|
|
|
|
|
|
|
|
|
namespace wowee {
|
|
|
|
|
namespace game {
|
|
|
|
|
|
2026-02-07 11:43:37 -08:00
|
|
|
void World::update([[maybe_unused]] float deltaTime) {
|
2026-03-09 15:54:43 -07:00
|
|
|
// World state updates are handled by Application (terrain streaming, entity sync,
|
|
|
|
|
// camera, etc.) and GameHandler (server packet processing). World is a thin
|
|
|
|
|
// ownership token; per-frame logic lives in those subsystems.
|
2026-02-02 12:24:50 -08:00
|
|
|
}
|
|
|
|
|
|
2026-02-07 11:43:37 -08:00
|
|
|
void World::loadMap([[maybe_unused]] uint32_t mapId) {
|
2026-03-09 15:54:43 -07:00
|
|
|
// Terrain loading is driven by Application::loadOnlineWorld() via TerrainManager.
|
|
|
|
|
// This method exists as an extension point; no action needed here.
|
2026-02-02 12:24:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace game
|
|
|
|
|
} // namespace wowee
|