added bike shop

This commit is contained in:
aviate
2019-09-07 20:05:29 +02:00
parent 81a40597ba
commit 7bdc7e087e

View File

@@ -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()
{
}
}
}