Stand/Stand/CommandExtraInfo.hpp
2024-10-16 11:20:42 +08:00

16 lines
220 B
C++

#pragma once
#include <cstdint>
#include <string>
namespace Stand
{
struct CommandExtraInfo
{
std::wstring completed_hint{};
uint8_t char_limit = 0;
bool colour_selector = false;
bool collapse = false;
};
}