11 lines
238 B
C#
11 lines
238 B
C#
using MemoryPack;
|
|
|
|
namespace ET
|
|
{
|
|
[ComponentOf(typeof(LSUnit))]
|
|
[MemoryPackable]
|
|
public partial class LSInputComponent: LSEntity, ILSUpdate, IAwake, ISerializeToEntity
|
|
{
|
|
public LSInput LSInput { get; set; }
|
|
}
|
|
} |