mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
Remade resource script system
This commit is contained in:
parent
4261009c33
commit
029128c8b8
17 changed files with 576 additions and 386 deletions
15
Scripts/AttackPatterns/IPatternMachine.cs
Normal file
15
Scripts/AttackPatterns/IPatternMachine.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using Cirno.Scripts.Resources;
|
||||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.AttackPatterns;
|
||||
|
||||
public interface IPatternMachine
|
||||
{
|
||||
public Node2D Parent { get; }
|
||||
|
||||
public void Start();
|
||||
|
||||
public void UpdatePattern(double delta);
|
||||
public bool IsComplete();
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue