#include "../../RuntimeObjectSystem/ObjectInterfacePerModule.h" #include "../../RuntimeObjectSystem/IObject.h" #include "IUpdateable.h" #include "InterfaceIds.h" #include class RuntimeObject01 : public TInterface { public: virtual void Update( float deltaTime ) { std::cout << "Runtime Object 01231 update called!\n"; } }; REGISTERCLASS(RuntimeObject01);