14 lines
273 B
C#
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; }
|
|
}
|