Files
reallife-gamemode/ReallifeGamemode.Server/Util/TaxiContract.cs
2020-05-10 19:19:53 +02:00

14 lines
240 B
C#

using GTANetworkAPI;
namespace ReallifeGamemode.Server.Util
{
public class TaxiContract
{
public string Name { get; set; }
public Vector3 Position { get; set; }
public Player Driver { get; set; }
}
}