- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #include "BsEventQuery.h"
- #include "BsQueryManager.h"
- namespace BansheeEngine
- {
- EventQueryPtr EventQuery::create()
- {
- return QueryManager::instance().createEventQuery();
- }
- }
|