SAMP.NET/sampdotnet/Core/Interfaces/IWorldEntity.cs
2022-08-27 18:18:04 +01:00

7 lines
117 B
C#

namespace SAMP.Core
{
public interface IWorldEntity
{
API.Vector3 Position { get; set; }
};
};