IClientActorMessage.cs 275 B

12345678910111213141516
  1. namespace ETModel
  2. {
  3. // 客户端发送actor消息
  4. public interface IClientActorMessage : IActorRequest
  5. {
  6. }
  7. // 客户端发送actor rpc消息
  8. public interface IClientActorRequest : IActorRequest
  9. {
  10. }
  11. public interface IClientActorResponse : IActorResponse
  12. {
  13. }
  14. }