Files
reallife-gamemode/ReallifeGamemode.Server/Util/TaxiContract.cs
Siga edf06f4478 RAGE Multiplayer 1.1.0-DP Update
/freeze was obselete and removed
/unfreeze was obselete and removed
/spectate was obselete and removed
2020-02-24 21:19:23 +01:00

17 lines
284 B
C#

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