BsGpuResource.cpp 615 B

123456789101112131415161718
  1. //__________________________ Banshee Project - A modern game development toolkit _________________________________//
  2. //_____________________________________ www.banshee-project.com __________________________________________________//
  3. //________________________ Copyright (c) 2014 Marko Pintera. All rights reserved. ________________________________//
  4. #include "BsGpuResource.h"
  5. #include "BsGpuResourceRTTI.h"
  6. namespace BansheeEngine
  7. {
  8. RTTITypeBase* GpuResource::getRTTIStatic()
  9. {
  10. return GpuResourceRTTI::instance();
  11. }
  12. RTTITypeBase* GpuResource::getRTTI() const
  13. {
  14. return GpuResource::getRTTIStatic();
  15. }
  16. }