cirnogodot/Scripts/Components/IIRotateable.cs
2025-03-10 17:33:43 +01:00

8 lines
No EOL
146 B
C#

using Cirno.Scripts.Enums;
namespace Cirno.Scripts.Components;
public interface IIRotateable
{
public Direction Direction { get; set; }
}