LSInputComponent.cs 238 B

1234567891011
  1. using MemoryPack;
  2. namespace ET
  3. {
  4. [ComponentOf(typeof(LSUnit))]
  5. [MemoryPackable]
  6. public partial class LSInputComponent: LSEntity, ILSUpdate, IAwake, ISerializeToEntity
  7. {
  8. public LSInput LSInput { get; set; }
  9. }
  10. }