Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Components/IStatusEffectComponent.cs
2026-03-02 22:28:23 -08:00

14 lines
273 B
C#

using Chickensoft.Collections;
using Godot;
using Zennysoft.Ma.Adapter;
public interface IStatusEffectComponent : IEntityComponent
{
[Export] public double RustDuration { get; set; }
public AutoProp<bool> Rust { get; }
public bool ImmuneToRust { get; set; }
}