8 lines
122 B
C#
8 lines
122 B
C#
using Godot;
|
|
|
|
namespace Movementtests.interfaces;
|
|
|
|
public interface ITargetable
|
|
{
|
|
Vector3 GetTargetGlobalPosition();
|
|
} |