| 12345678910111213141516 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #include "Physics/BsBoxCollider.h"
- #include "Physics/BsPhysics.h"
- namespace bs
- {
- BoxCollider::BoxCollider()
- { }
- SPtr<BoxCollider> BoxCollider::create(const Vector3& extents,
- const Vector3& position, const Quaternion& rotation)
- {
- return Physics::instance().createBoxCollider(extents, position, rotation);
- }
- }
|