Directional computers

This commit is contained in:
Marco 2025-03-10 17:33:43 +01:00
commit 7ec45b56b1
13 changed files with 164 additions and 46 deletions

View file

@ -0,0 +1,8 @@
using Cirno.Scripts.Enums;
namespace Cirno.Scripts.Components;
public interface IIRotateable
{
public Direction Direction { get; set; }
}