LSInputComponent.cs 190 B

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