mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
13 lines
239 B
C#
13 lines
239 B
C#
|
|
using Godot;
|
|||
|
|
|
|||
|
|
namespace Cirno.Scripts.Components.Actors;
|
|||
|
|
|
|||
|
|
public partial class HitShieldAnimation : Node2D
|
|||
|
|
{
|
|||
|
|
[Export] public AnimatedSprite2D Sprite { get; private set; }
|
|||
|
|
|
|||
|
|
public void Play()
|
|||
|
|
{
|
|||
|
|
Sprite?.Play();
|
|||
|
|
}
|
|||
|
|
}
|