| 12345678910111213141516171819202122232425262728293031323334353637 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #include "Build/BsPlatformInfo.h"
- #include "Private/RTTI/BsPlatformInfoRTTI.h"
- namespace bs
- {
- PlatformInfo::PlatformInfo()
- :type(PlatformType::Windows), fullscreen(true), windowedWidth(1280), windowedHeight(720)
- { }
- PlatformInfo::~PlatformInfo()
- { }
- RTTITypeBase* PlatformInfo::getRTTIStatic()
- {
- return PlatformInfoRTTI::instance();
- }
- RTTITypeBase* PlatformInfo::getRTTI() const
- {
- return PlatformInfo::getRTTIStatic();
- }
- WinPlatformInfo::WinPlatformInfo()
- { }
- RTTITypeBase* WinPlatformInfo::getRTTIStatic()
- {
- return WinPlatformInfoRTTI::instance();
- }
- RTTITypeBase* WinPlatformInfo::getRTTI() const
- {
- return WinPlatformInfo::getRTTIStatic();
- }
- }
|