RobotEventName.ts 408 B

123456789101112131415
  1. /**
  2. * 机器人事件
  3. */
  4. export default class RobotEventName {
  5. /**创建 */
  6. public readonly Robot_CreateRobot: string = "Robot_CreateRobot";
  7. /**删除 */
  8. public readonly Robot_RemoveRobot: string = "Robot_RemoveRobot";
  9. /**启动 */
  10. public readonly Robot_OpenRobot: string = "Robot_OpenRobot";
  11. /**停止 */
  12. public readonly Robot_StopRobot: string = "Robot_StopRobot";
  13. }