SUNENGINE 0.0.2
A simple and bright C++ game engine.
 
Loading...
Searching...
No Matches
CommandBase.h
Go to the documentation of this file.
1
7
8#ifndef CommandBase_H
9#define CommandBase_H
10
19{
20public:
26 virtual void Execute() = 0;
27
31 virtual ~CommandBase() = default;
32};
33
34#endif
Base class for all command objects.
Definition CommandBase.h:19
virtual ~CommandBase()=default
Destructor for CommandBase.
virtual void Execute()=0
Executes the command.