Implemented entity cloning

This commit is contained in:
2014-04-27 07:48:16 +02:00
parent 956e7cab7b
commit 04cafc53e2
19 changed files with 107 additions and 16 deletions
+6 -1
View File
@@ -6,7 +6,12 @@
namespace Components
{
struct Template : Component { };
struct Template
: public Component
{
virtual Template* Clone() const override { return nullptr; }
};
}
#endif // !Components_Template_h__