8 lines
89 B
C#
8 lines
89 B
C#
using Godot;
|
|
using System;
|
|
|
|
public interface ILocation
|
|
{
|
|
Vector3 Position { get; }
|
|
}
|