Implemented entity cloning
This commit is contained in:
@@ -6,7 +6,12 @@
|
||||
namespace Components
|
||||
{
|
||||
|
||||
struct Template : Component { };
|
||||
struct Template
|
||||
: public Component
|
||||
{
|
||||
virtual Template* Clone() const override { return nullptr; }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // !Components_Template_h__
|
||||
Reference in New Issue
Block a user