Files

11 lines
201 B
C#

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