mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:45:33 +00:00
15 lines
No EOL
272 B
C#
15 lines
No EOL
272 B
C#
using Cirno.Scripts.Resources;
|
|
using Godot;
|
|
|
|
namespace Cirno.Scripts.AttackPatterns;
|
|
|
|
public interface IPatternMachine
|
|
{
|
|
public Node Parent { get; }
|
|
|
|
public void Start();
|
|
|
|
public void UpdatePattern(double delta);
|
|
public bool IsComplete();
|
|
|
|
} |