2
0

BsGpuResource.cpp 264 B

123456789101112131415
  1. #include "BsGpuResource.h"
  2. #include "BsGpuResourceRTTI.h"
  3. namespace BansheeEngine
  4. {
  5. RTTITypeBase* GpuResource::getRTTIStatic()
  6. {
  7. return GpuResourceRTTI::instance();
  8. }
  9. RTTITypeBase* GpuResource::getRTTI() const
  10. {
  11. return GpuResource::getRTTIStatic();
  12. }
  13. }