| 1234567891011121314151617181920212223 |
- #include "BsDbgTestGameObjectRef.h"
- #include "BsDbgTestGameObjectRefRTTI.h"
- #include "BsSceneObject.h"
- #include "BsRenderable.h"
- namespace BansheeEngine
- {
- DbgTestGameObjectRef::DbgTestGameObjectRef(const HSceneObject& parent)
- :Component(parent)
- {
- }
- RTTITypeBase* DbgTestGameObjectRef::getRTTIStatic()
- {
- return DbgTestGameObjectRefRTTI::instance();
- }
- RTTITypeBase* DbgTestGameObjectRef::getRTTI() const
- {
- return DbgTestGameObjectRef::getRTTIStatic();
- }
- }
|