mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(world): add CWorldScene class
This commit is contained in:
parent
1326c896df
commit
b1694c2897
12 changed files with 126 additions and 23 deletions
17
src/world/CWorldScene.hpp
Normal file
17
src/world/CWorldScene.hpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue