28 lines
337 B
C
28 lines
337 B
C
![]() |
#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
|