1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
---|---|
2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
3 | #include "Utility/BsGameSettings.h" |
4 | #include "Private/RTTI/BsGameSettingsRTTI.h" |
5 | |
6 | namespace bs |
7 | { |
8 | RTTITypeBase* GameSettings::getRTTIStatic() |
9 | { |
10 | return GameSettingsRTTI::instance(); |
11 | } |
12 | |
13 | RTTITypeBase* GameSettings::getRTTI() const |
14 | { |
15 | return GameSettings::getRTTIStatic(); |
16 | } |
17 | |
18 | } |