summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/position_tracker.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Concept/Framework/position_tracker.h')
-rw-r--r--source/Concept/Framework/position_tracker.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/source/Concept/Framework/position_tracker.h b/source/Concept/Framework/position_tracker.h
deleted file mode 100644
index 49c5d40..0000000
--- a/source/Concept/Framework/position_tracker.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef _POSITION_TRACKER_H
-#define _POSITION_TRACKER_H
-
-#include "stdafx.h"
-
-class Position_Tracker : public IO_Module
-{
-public:
- Position_Tracker()
- {
- this->parent = NULL;
- this->moduleId = 0;
- }
-
- Position_Tracker(uint32 trackerId)
- {
- this->parent = NULL;
- this->moduleId = trackerId;
- }
-
-protected:
-
-public:
- void Update();
-};
-
-#endif