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/modules/executor/aktuator.h
2007-02-22 21:22:02 +00:00

27 lines
337 B
C++
Executable file

#ifndef _AKTUATOR_H
#define _AKTUATOR_H
#include "../../stdafx.h"
class Aktuator : public IO_Module
{
public:
Aktuator()
{
this->parent = NULL;
this->moduleId = 0;
}
Aktuator(uint32 aktuatorId)
{
this->parent = NULL;
this->moduleId = aktuatorId;
}
protected:
public:
void Kick();
};
#endif