mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
14 lines
214 B
C++
14 lines
214 B
C++
#ifndef EGG_CORE_SCENE_CREATOR_H
|
|
#define EGG_CORE_SCENE_CREATOR_H
|
|
#include "types_egg.h"
|
|
|
|
namespace EGG
|
|
{
|
|
struct SceneCreator
|
|
{
|
|
virtual Scene * create(s32) = 0;
|
|
virtual UNKTYPE destroy(s32) = 0;
|
|
};
|
|
}
|
|
|
|
#endif |