ClientSenderComponent.cs 206 B

12345678910
  1. namespace ET.Client
  2. {
  3. [ComponentOf(typeof(Scene))]
  4. public class ClientSenderComponent: Entity, IAwake, IDestroy
  5. {
  6. public int fiberId;
  7. public ActorId netClientActorId;
  8. }
  9. }