Files
ogws/include/egg/core/eggSceneCreator.h
2021-05-20 20:49:54 +03:00

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