Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Components/LuckComponent.cs
Zenny bc161a58b3 Additional refactoring and fixing of equipment data
Add attack data to enemy attacks (might need to rework a little bit for primary/secondary attacks)
2025-10-23 00:05:44 -07:00

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);
}