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

7 lines
103 B
C#

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