| 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 "Audio/BsAudioClipImportOptions.h" |
| 4 | #include "Private/RTTI/BsAudioClipImportOptionsRTTI.h" |
| 5 | |
| 6 | namespace bs |
| 7 | { |
| 8 | SPtr<AudioClipImportOptions> AudioClipImportOptions::create() |
| 9 | { |
| 10 | return bs_shared_ptr_new<AudioClipImportOptions>(); |
| 11 | } |
| 12 | |
| 13 | /************************************************************************/ |
| 14 | /* SERIALIZATION */ |
| 15 | /************************************************************************/ |
| 16 | RTTITypeBase* AudioClipImportOptions::getRTTIStatic() |
| 17 | { |
| 18 | return AudioClipImportOptionsRTTI::instance(); |
| 19 | } |
| 20 | |
| 21 | RTTITypeBase* AudioClipImportOptions::getRTTI() const |
| 22 | { |
| 23 | return getRTTIStatic(); |
| 24 | } |
| 25 | } |
| 26 |