Add attack data to enemy attacks (might need to rework a little bit for primary/secondary attacks)
11 lines
182 B
C#
11 lines
182 B
C#
using Chickensoft.Collections;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
public interface ILuckComponent
|
|
{
|
|
public IAutoProp<int> Luck { get; }
|
|
|
|
public void IncreaseLuck(int value);
|
|
}
|