soccermessages.h
来自「用人工智能实现的足球机器人人仿真比赛的程序」· C头文件 代码 · 共 19 行
H
19 行
#ifndef SOCCER_MESSAGES_H
#define SOCCER_MESSAGES_H
#include <string>
enum MessageType
{
Msg_ReceiveBall,
Msg_PassToMe,
Msg_SupportAttacker,
Msg_GoHome,
Msg_Wait
};
//converts an enumerated value to a string
inline std::string MessageToString(int msg);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?