13 lines
320 B
C#
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);
|
|
}
|