summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/modules/interpreter/position_tracker.h
diff options
context:
space:
mode:
authorsicarius <devnull@localhost>2007-02-20 22:01:02 +0100
committersicarius <devnull@localhost>2007-02-20 22:01:02 +0100
commit22433e52a7b0f2e5c548edb915ea11a38a8077ad (patch)
tree1d7add120a7fe0630dc798eaaf4a3277f2bb1e23 /source/Concept/Framework/modules/interpreter/position_tracker.h
parentec2a18e931cdaa6c62a8843c29dc93c4a823a2cd (diff)
downloadrc2007-soccer-22433e52a7b0f2e5c548edb915ea11a38a8077ad.tar
rc2007-soccer-22433e52a7b0f2e5c548edb915ea11a38a8077ad.zip
+++ Codework, Navigator&Positiontracker done (buggy?)
Diffstat (limited to 'source/Concept/Framework/modules/interpreter/position_tracker.h')
-rwxr-xr-xsource/Concept/Framework/modules/interpreter/position_tracker.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Concept/Framework/modules/interpreter/position_tracker.h b/source/Concept/Framework/modules/interpreter/position_tracker.h
index b31dd8f..e93ef0c 100755
--- a/source/Concept/Framework/modules/interpreter/position_tracker.h
+++ b/source/Concept/Framework/modules/interpreter/position_tracker.h
@@ -10,12 +10,18 @@ public:
{
this->parent = NULL;
this->moduleId = 0;
+ this->positionX = 0;
+ this->positionY = 0;
+ this->orientation = 0;
}
Position_Tracker(uint32 trackerId)
{
this->parent = NULL;
this->moduleId = trackerId;
+ this->positionX = 0;
+ this->positionY = 0;
+ this->orientation = 0;
}
protected: