Effect system and snowpea

This commit is contained in:
Фёдор Веселов 2024-10-02 19:46:51 +05:00
commit e797918e23
18 changed files with 353 additions and 16 deletions

View file

@ -1,11 +1,12 @@
using Godot;
using System;
namespace Newlon.Systems.Effects;
public abstract partial class Effect : Resource
{
public abstract void Enter();
public abstract void Process();
public abstract void Exit();
[Export] public float Duration;
[Export] public Utility.EffectSlots Slot;
public abstract void Enter(Node target);
public abstract void Process(Node target);
public abstract void Exit(Node target);
}