11 lines
177 B
C#
11 lines
177 B
C#
using Chickensoft.Collections;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
public interface ILuckComponent
|
|
{
|
|
public IAutoProp<int> Luck { get; }
|
|
|
|
public void SetLuck(int value);
|
|
}
|