mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-24 08:00:14 +00:00
15 lines
245 B
C++
15 lines
245 B
C++
#include "game/world.hpp"
|
|
|
|
namespace wowee {
|
|
namespace game {
|
|
|
|
void World::update(float deltaTime) {
|
|
// TODO: Update world state
|
|
}
|
|
|
|
void World::loadMap(uint32_t mapId) {
|
|
// TODO: Load map data
|
|
}
|
|
|
|
} // namespace game
|
|
} // namespace wowee
|