summaryrefslogtreecommitdiff
path: root/src/organism.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/organism.cpp')
-rw-r--r--src/organism.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/organism.cpp b/src/organism.cpp
index 27f6f8a..ee9f849 100644
--- a/src/organism.cpp
+++ b/src/organism.cpp
@@ -18,15 +18,6 @@ Organism::Organism(Rectangle r, DNA d)
pregnate = false;
hasTarget = false;
wander = false;
-
- if(myDNA.type == CREATURE_TYPE){
- if(gender)
- gfxData = GraphicsData(rect.x, rect.y, 1, 0, 0, CREATURE_SIDES);
- else
- gfxData = GraphicsData(rect.x, rect.y, 0, 0, 1, CREATURE_SIDES);
- }
- else
- gfxData = GraphicsData(rect.x, rect.y, 0, 1, 0, RESOURCE_SIDES);
}
void Organism::Behavior()
@@ -100,7 +91,6 @@ void Organism::checkTarget()
hasTarget = false;
}
-
void Organism::Action()
{
if(hasTarget){
@@ -185,9 +175,3 @@ void Organism::takeBite(int bite)
{
health-=bite;
}
-
-void Organism::Place()
-{
- gfxData.x = rect.x;
- gfxData.y = rect.y;
-}