SAMP.NET/sampdotnet/Core/Interfaces/IWorldEntity.cs

7 lines
117 B
C#
Raw Normal View History

2022-08-27 17:16:44 +00:00
namespace SAMP.Core
{
public interface IWorldEntity
{
2022-08-27 17:18:04 +00:00
API.Vector3 Position { get; set; }
2022-08-27 17:16:44 +00:00
};
};