mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
17 lines
398 B
C++
17 lines
398 B
C++
![]() |
#include "backend/command.hpp"
|
||
|
#include "natives.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
class skip_cutscene : command
|
||
|
{
|
||
|
using command::command;
|
||
|
|
||
|
virtual void execute(const std::vector<std::uint64_t>&, const std::shared_ptr<command_context> ctx)
|
||
|
{
|
||
|
CUTSCENE::STOP_CUTSCENE_IMMEDIATELY();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
skip_cutscene g_skip_cutscene("skipcutscene", "Skip Cutscene", "Skips the currently playing cutscene", 0);
|
||
|
}
|