BsTimerQuery.cpp 428 B

123456789101112
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "BsTimerQuery.h"
  4. #include "BsQueryManager.h"
  5. namespace BansheeEngine
  6. {
  7. TimerQueryPtr TimerQuery::create()
  8. {
  9. return QueryManager::instance().createTimerQuery();
  10. }
  11. }