summaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index ff6799e..6ad0e3f 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -1,19 +1,5 @@
#include "entity.hpp"
-void Entity::Init(Window m)
-{
- renderer = m.getRenderer();
- rect.y = rand()%WINDOW_Y;
- rect.x = rand()%WINDOW_X;
-}
-
-void Entity::Init(Window m, Location z)
-{
- renderer = m.getRenderer();
- rect.y = z.y;
- rect.x = z.x;
-}
-
void Entity::Place()
{
if(type == 1)