using System; using System.Collections.Generic; namespace ET { [ComponentOf(typeof(Unit))] public class UnitDBSaveComponent : Entity, IAwake, IDestroy { public HashSet EntityChangeTypeSet { get; } = new HashSet(); public long Timer; public long SaveUnitTimer; } }