shmodot/scripts/orbits/ILocation.cs
2022-09-05 19:58:32 +01:00

8 lines
89 B
C#

using Godot;
using System;
public interface ILocation
{
Vector3 Position { get; }
}