mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:45:33 +00:00
20 lines
No EOL
453 B
C#
20 lines
No EOL
453 B
C#
using Godot;
|
|
using Godot.Collections;
|
|
|
|
namespace Cirno.Scripts.Resources.ScriptableBullets;
|
|
|
|
[GlobalClass]
|
|
public partial class BossScript : Resource
|
|
{
|
|
[Export]
|
|
public StringName BossName { get; private set; }
|
|
|
|
[Export]
|
|
public Array<BossPhase> Phases { get; private set; } = [];
|
|
|
|
[Export]
|
|
public Texture2D PortraitTexture { get; private set; }
|
|
|
|
[Export]
|
|
public PackedScene HudPrefab { get; private set; }
|
|
} |