Some documentation

This commit is contained in:
Dander7BD 2013-11-25 11:35:38 +01:00
parent c3e3f9e461
commit d33d1f41bc
1 changed files with 5 additions and 0 deletions

View File

@ -200,11 +200,16 @@ namespace Oyster
virtual ~API() {} virtual ~API() {}
}; };
//! sdfsdf
class ICustomBody class ICustomBody
{ {
public: public:
virtual ~ICustomBody() {}; 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<ICustomBody> Clone() const = 0; virtual ::Utility::DynamicMemory::UniquePointer<ICustomBody> Clone() const = 0;
virtual bool IsSubscribingCollisions() const = 0; virtual bool IsSubscribingCollisions() const = 0;