11 lines
173 B
C#
11 lines
173 B
C#
using Godot;
|
|
|
|
namespace Mr.BrickAdventures.scripts.interfaces;
|
|
|
|
public interface ISkill
|
|
{
|
|
void Initialize(Node owner);
|
|
|
|
void Activate();
|
|
void Deactivate();
|
|
} |