2025-04-19 11:27:47 +08:00

18 lines
236 B
C++

#ifndef __COMMAND_H__
#define __COMMAND_H__
#include <list>
#include <string>
class Command {
public:
Command();
~Command();
private:
std::list<std::string> m_commands;
};
void register_custom();
#endif // __COMMAND_H__