You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
2 months ago
|
#include "../../RuntimeObjectSystem/ObjectInterfacePerModule.h"
|
||
|
|
||
|
#include "../../RuntimeObjectSystem/IObject.h"
|
||
|
#include "IUpdateable.h"
|
||
|
#include "InterfaceIds.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
|
||
|
class RuntimeObject01 : public TInterface<IID_IUPDATEABLE,IUpdateable>
|
||
|
{
|
||
|
public:
|
||
|
virtual void Update( float deltaTime )
|
||
|
{
|
||
|
std::cout << "Runtime Object 01 update called!\n";
|
||
|
}
|
||
|
};
|
||
|
|
||
|
REGISTERCLASS(RuntimeObject01);
|