This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Concept/Framework/position_tracker.h
2007-02-17 13:42:00 +00:00

27 lines
371 B
C++

#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