Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/Fsm/IEntity.cs

14 lines
237 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace Aitex.Core.RT.Fsm
{
public interface IEntity
{
bool Initialize();
void Terminate();
void PostMsg<T>(T msg, params object[] args) where T : struct;
bool Check(int msg, out string reason, params object[] args);
}
}