BsDbgTestGameObjectRef.cpp 563 B

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