mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
15 lines
322 B
C++
15 lines
322 B
C++
#pragma once
|
|
#include "bool_command.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class looped_command : public bool_command
|
|
{
|
|
public:
|
|
looped_command(const std::string& name, const std::string& label, const std::string& description, bool& toggle);
|
|
|
|
virtual void on_tick() = 0;
|
|
};
|
|
|
|
inline std::vector<looped_command*> g_looped_commands;
|
|
} |