summaryrefslogtreecommitdiff
path: root/src/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resource.cpp')
-rw-r--r--src/resource.cpp32
1 files changed, 17 insertions, 15 deletions
diff --git a/src/resource.cpp b/src/resource.cpp
index 08929bc..0c07be3 100644
--- a/src/resource.cpp
+++ b/src/resource.cpp
@@ -1,27 +1,29 @@
#include "resource.hpp"
-Resource::Resource(Window m, std::string s)
-{
- texture = loadTexture(s, m);
- renderer = m.getRenderer();
-
- L.y = rand()%800;
- L.x = rand()%1200;
+Resource::Resource(Window m, int size)
+{
+ Init(m);
type = 2;
+ rect.h = rect.w = size;
+
+ L.x = rect.x;
+ L.y = rect.y;
+
amount = 100;
}
-Resource::Resource(Window m, std::string s, Location z)
+Resource::Resource(Window m, int size, Location z)
{
- texture = loadTexture(s, m);
- renderer = m.getRenderer();
-
- L.y = z.y;
- L.x = z.x;
+ Init(m,z);
type = 2;
-
- amount = 100;
+
+ rect.h = rect.w = size;
+
+ L.x = rect.x;
+ L.y = rect.y;
+
+ amount = 200;
}
void Resource::eat()