BsDbgTestGameObjectRef.cpp 494 B

1234567891011121314151617181920212223
  1. #include "BsDbgTestGameObjectRef.h"
  2. #include "BsDbgTestGameObjectRefRTTI.h"
  3. #include "CmSceneObject.h"
  4. #include "BsRenderable.h"
  5. namespace BansheeEngine
  6. {
  7. DbgTestGameObjectRef::DbgTestGameObjectRef(const HSceneObject& parent)
  8. :Component(parent)
  9. {
  10. }
  11. RTTITypeBase* DbgTestGameObjectRef::getRTTIStatic()
  12. {
  13. return DbgTestGameObjectRefRTTI::instance();
  14. }
  15. RTTITypeBase* DbgTestGameObjectRef::getRTTI() const
  16. {
  17. return DbgTestGameObjectRef::getRTTIStatic();
  18. }
  19. }