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.
YimMenu/src/backend/looped_command.cpp

10 lines
274 B
C++

#include "looped_command.hpp"
namespace big
{
looped_command::looped_command(const std::string& name, const std::string& label, const std::string& description, bool& toggle) :
bool_command(name, label, description, toggle)
{
g_looped_commands.push_back(this);
}
}