mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 23:07:26 +08:00
17 lines
371 B
C++
17 lines
371 B
C++
#include "backend/command.hpp"
|
|
#include "natives.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class skip_cutscene : command
|
|
{
|
|
using command::command;
|
|
|
|
virtual void execute(const command_arguments&, const std::shared_ptr<command_context> ctx)
|
|
{
|
|
CUTSCENE::STOP_CUTSCENE_IMMEDIATELY();
|
|
}
|
|
};
|
|
|
|
skip_cutscene g_skip_cutscene("skipcutscene", "SKIP_CUTSCENE", "SKIP_CUTSCENE_DESC", 0);
|
|
} |