From d33d1f41bc22dedfb402594da12e5585b9d2ef7d Mon Sep 17 00:00:00 2001 From: Dander7BD Date: Mon, 25 Nov 2013 11:35:38 +0100 Subject: [PATCH] Some documentation --- Code/GamePhysics/PhysicsAPI.h | 5 +++++ 1 file changed, 5 insertions(+) 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;