mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 14:57:27 +08:00
17 lines
346 B
C++
17 lines
346 B
C++
#include "backend/command.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class fast_quit : command
|
|
{
|
|
using command::command;
|
|
|
|
virtual void execute(const command_arguments&, const std::shared_ptr<command_context> ctx) override
|
|
{
|
|
exit(0);
|
|
}
|
|
};
|
|
|
|
fast_quit g_fast_quit("fastquit", "Rage Quit", "We all have bad times sometimes. Close your GTA instant.", 0);
|
|
}
|