21 lines
339 B
C++
21 lines
339 B
C++
#pragma once
|
|
|
|
#include "mt/macro.h"
|
|
#include "mtb/Robot.h"
|
|
|
|
namespace mt
|
|
{
|
|
|
|
DECLARE_ID_TABLE(Robot, mtb::Robot,
|
|
"robot@robot.csv",
|
|
"id")
|
|
public:
|
|
|
|
void Init1();
|
|
static const mt::Robot* RandRobot(std::set<int>& refreshed_robot_set);
|
|
|
|
std::vector<int> _skin_id;
|
|
};
|
|
|
|
}
|