12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Aitex.Core.RT.Fsm;
- namespace Venus_RT.Modules
- {
- class RouteManager : Entity, IEntity
- {
- public bool Check(int msg, out string reason, params object[] args)
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
- reason = "";
- return true;
- }
- }
- }
|