aboutsummaryrefslogtreecommitdiff
path: root/src/commands/quit.hpp
blob: cb1aefdd942a5e5dcc4a3723aaf47ab46a1cb1e5 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include "interfaces/command.hpp"

class QuitCommand : public ICommand
{
public:
	void execute() noexcept override;
};