This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
341 B
C++
Raw Normal View History

#include "backend/command.hpp"
namespace big
{
class fast_quit : command
{
using command::command;
virtual void execute(const std::vector<uint64_t>&, const std::shared_ptr<command_context> ctx)
{
exit(0);
}
};
fast_quit g_fast_quit("fastquit", "Rage Quit", "We all have bad times sometimes. Close your GTA instant.", 0);
}