//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// #pragma once #include "BsCorePrerequisites.h" #include "BsRTTIType.h" #include "BsCBoxCollider.h" #include "BsGameObjectRTTI.h" namespace BansheeEngine { /** @cond RTTI */ /** @addtogroup RTTI-Impl-Core * @{ */ class BS_CORE_EXPORT CBoxColliderRTTI : public RTTIType { private: BS_PLAIN_MEMBER(mExtents) public: CBoxColliderRTTI() { BS_ADD_PLAIN_FIELD(mExtents, 0); } const String& getRTTIName() override { static String name = "CBoxCollider"; return name; } UINT32 getRTTIId() override { return TID_CBoxCollider; } std::shared_ptr newRTTIObject() override { return GameObjectRTTI::createGameObject(); } }; /** @} */ /** @endcond */ }