/* * Command.hpp * * Created on: 4 нояб. 2021 г. * Author: alexander */ #pragma once class Command { public: virtual void Execute() = 0; virtual ~Command() {}; };