summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/modules/executor/aktuator.h
blob: 9dc86849f4a238e4ac0f76a476c4a8bfa8b8e7b9 (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 _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