thunderbrew/src/world/CWorldScene.hpp

18 lines
325 B
C++
Raw Normal View History

2025-08-02 01:41:58 +04:00
#ifndef WORLD_C_WORLDSCENE_HPP
#define WORLD_C_WORLDSCENE_HPP
#include <cstdint>
#include <tempest/Vector.hpp>
class CM2Scene;
class CWorldScene {
public:
static CM2Scene* s_m2Scene;
static void Initialize();
static void Render(const C3Vector& cameraPos, float time);
};
#endif // WORLD_C_WORLDSCENE_HPP