summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/position_tracker.h
blob: 49c5d40ebdfb63285639eadd2d53da78b0884341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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