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
+2
View File
@@ -18,6 +18,8 @@ struct Input : Component
std::array<int, GLFW_MOUSE_BUTTON_LAST+1> LastMouseState;
float dX, dY;
float WheelDelta;
virtual Input* Clone() const override { return new Input(*this); }
};
}