Files
ogre-prototype/src/gamedata/SmartObject.cpp
2025-10-22 16:39:19 +03:00

10 lines
227 B
C++

#include "SmartObject.h"
namespace ECS
{
SmartObjectModule::SmartObjectModule(flecs::world &ecs)
{
ecs.module<SmartObjectModule>();
ecs.component<SmartObjectManager>().add(flecs::Singleton);
ecs.component<SmartObject>();
}
}