aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/command.hpp
blob: 245bdd6979d5a6170f57f47e87f120b4168fa17f (plain)
1
2
3
4
5
6
7
8
9
#pragma once

class ICommand
{
public:
	virtual ~ICommand() = default;

	virtual void execute() noexcept = 0;
};