TDME2 1.9.121
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 * @version $Id$
10 */
12{
13 /**
14 * Perform action
15 */
16 virtual void performAction() = 0;
17
18 /**
19 * Destructor
20 */
21 virtual ~Action() {}
22};
Action Interface.
Definition: Action.h:12
virtual ~Action()
Destructor.
Definition: Action.h:21
virtual void performAction()=0
Perform action.