using Chickensoft.Collections; namespace Zennysoft.Ma.Adapter; public interface ILuckComponent : IEntityComponent { public int InitialLuck { get; } public IAutoProp Luck { get; } public void IncreaseLuck(int value); void DecreaseLuck(int value); }