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

13 lines
320 B
C#

using Godot;
namespace Newlon.Systems.Effects;
[GlobalClass]
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);
}