cirnogodot/Scripts/Components/IIRotateable.cs

8 lines
146 B
C#
Raw Normal View History

2025-03-10 17:33:43 +01:00
using Cirno.Scripts.Enums;
namespace Cirno.Scripts.Components;
public interface IIRotateable
{
public Direction Direction { get; set; }
}