mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
17 lines
325 B
C++
17 lines
325 B
C++
#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
|