diff --git a/Code/GamePhysics/PhysicsAPI.h b/Code/GamePhysics/PhysicsAPI.h index 9bec064a..9573f405 100644 --- a/Code/GamePhysics/PhysicsAPI.h +++ b/Code/GamePhysics/PhysicsAPI.h @@ -200,11 +200,16 @@ namespace Oyster virtual ~API() {} }; + //! sdfsdf class ICustomBody { public: virtual ~ICustomBody() {}; + /******************************************************** + * Creates a complete copy of the current (type)object. + * @return An ICustomBody pointer along with the responsibility to delete. + ********************************************************/ virtual ::Utility::DynamicMemory::UniquePointer Clone() const = 0; virtual bool IsSubscribingCollisions() const = 0;