mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-06 01:45:55 +00:00
Danmaku system
This commit is contained in:
parent
9c8ec486fc
commit
fdec052c16
38 changed files with 924 additions and 9 deletions
13
Scripts/Resources/AttackPattern.cs
Normal file
13
Scripts/Resources/AttackPattern.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using Cirno.Scripts.Actors;
|
||||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Resources;
|
||||
|
||||
public abstract partial class AttackPattern : Resource
|
||||
{
|
||||
public Boss Boss;
|
||||
[Export] public bool WaitForCompletion = true;
|
||||
public abstract void Start(Boss boss);
|
||||
public abstract void UpdatePattern(double delta);
|
||||
public abstract bool IsComplete();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue