NetClientComponent.cs 328 B

12345678910111213141516
  1. using System.Net.Sockets;
  2. namespace ET.Client
  3. {
  4. public struct NetClientComponentOnRead
  5. {
  6. public Session Session;
  7. public object Message;
  8. }
  9. [ComponentOf(typeof(Scene))]
  10. public class NetClientComponent: Entity, IAwake<AddressFamily>, IDestroy
  11. {
  12. public int ServiceId;
  13. }
  14. }