cirnogodot/Scripts/AttackPatterns/IScriptHost.cs

11 lines
231 B
C#
Raw Normal View History

2025-03-15 11:44:30 +01:00
using Godot;
namespace Cirno.Scripts.AttackPatterns;
public interface IScriptHost
{
2025-05-16 17:38:02 +02:00
public Node2D ParentObject { get; }
2025-03-15 11:44:30 +01:00
public Vector2 HomePosition { get; }
public void ChangeSpriteDirection(Vector2 direction);
2025-05-16 17:38:02 +02:00
2025-03-15 11:44:30 +01:00
}