TDME2  1.9.200
Action.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <tdme/tdme.h>
5 
6 /**
7  * Action Interface
8  * @author Andreas Drewke
9  */
11 {
12  /**
13  * Destructor
14  */
15  virtual ~Action() {}
16 
17  /**
18  * Perform action
19  */
20  virtual void performAction() = 0;
21 
22 };
Action Interface.
Definition: Action.h:11
virtual ~Action()
Destructor.
Definition: Action.h:15
virtual void performAction()=0
Perform action.