simple add balls implemented
[physics.git] / src / entityCreator.h
index 259ac24..6987c34 100644 (file)
@@ -18,6 +18,7 @@
 #ifndef ENTITYCREATOR_H
 #define ENTITYCREATOR_H
 
+#include "Vector2.h"
 
 /// ***** Header Methods *****
 namespace creator
@@ -25,8 +26,10 @@ namespace creator
     void init();
     void clean();
 
-    void addBall();
+    void addBall(const Vector2& pos, float radius, const float* color);
     void removeBall();
     void removeAllBalls();
+
+    void input();
 }
 #endif // ENTITYCREATOR_H