mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:55:35 +00:00
13 lines
No EOL
239 B
C#
13 lines
No EOL
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();
|
|
}
|
|
} |