mirror of
https://github.com/rrika/cdcEngineDXHR.git
synced 2024-11-23 21:49:54 +00:00
18 lines
282 B
C++
18 lines
282 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace cdc {
|
|
|
|
class SceneCellGroup;
|
|
class SceneEntity;
|
|
|
|
class IScene {
|
|
public:
|
|
// 42 methods
|
|
virtual void Draw(/*TODO*/) = 0; // 4
|
|
virtual SceneCellGroup *GetCellGroup(uint32_t) = 0; // 24
|
|
virtual SceneEntity *CreateEntity() = 0; // 28
|
|
};
|
|
|
|
}
|