From 7bdc7e087e4ee7da0fa28ea91a820d1af154f9a5 Mon Sep 17 00:00:00 2001 From: aviate Date: Sat, 7 Sep 2019 20:05:29 +0200 Subject: [PATCH] added bike shop --- .../Business/BikeDealerBusiness.cs | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ReallifeGamemode.Server/Business/BikeDealerBusiness.cs diff --git a/ReallifeGamemode.Server/Business/BikeDealerBusiness.cs b/ReallifeGamemode.Server/Business/BikeDealerBusiness.cs new file mode 100644 index 00000000..1de86acc --- /dev/null +++ b/ReallifeGamemode.Server/Business/BikeDealerBusiness.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; +using GTANetworkAPI; + +namespace ReallifeGamemode.Server.Business +{ + public class BikeDealerBusiness : CarDealerBusinessBase + { + public override int Id => 8; + + public override string Name => "Bike Shop"; + + public override Vector3 Position => new Vector3(1180.997, -394.9542, 68.01635); + + public override Vector3 CarSpawnPositon => new Vector3(1148.25, -369.0642, 67.06199); + + public override float CarSpawnHeading => 356.6f; + + public override void Load() + { + + } + } +}