newlon/scripts/systems/effects/Effect.cs
2025-07-07 17:29:10 +05:00

12 lines
306 B
C#

using Godot;
namespace Newlon.Systems.Effects;
public abstract partial class Effect : Resource
{
[Export] public float Duration;
[Export] public string Slot;
public abstract void Enter(Node target);
public abstract void Process(Node target);
public abstract void Exit(Node target);
}