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

7 lines
103 B
C#
Raw Normal View History

2022-08-27 17:10:32 +00:00

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