- /**
- * 机器人事件
- */
- export default class RobotEventName {
-
- /**创建 */
- public readonly Robot_CreateRobot: string = "Robot_CreateRobot";
- /**删除 */
- public readonly Robot_RemoveRobot: string = "Robot_RemoveRobot";
- /**启动 */
- public readonly Robot_OpenRobot: string = "Robot_OpenRobot";
- /**停止 */
- public readonly Robot_StopRobot: string = "Robot_StopRobot";
- }
|