mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
13 lines
No EOL
281 B
C#
13 lines
No EOL
281 B
C#
using Cirno.Scripts.Components;
|
|
using Cirno.Scripts.Enums;
|
|
using Cirno.Scripts.Interactables;
|
|
using Godot;
|
|
|
|
namespace Cirno.Scripts.Actors;
|
|
|
|
public partial class Computer : Switch, IIRotateable
|
|
{
|
|
[Export]
|
|
public Direction Direction { get; set; } = Direction.Down;
|
|
|
|
} |