added carshops

This commit is contained in:
aviate
2019-09-27 21:46:12 +02:00
parent b22fb89e32
commit 492fd0481d
3 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
namespace ReallifeGamemode.Server.Business
{
class SUVDealerBusiness : CarDealerBusinessBase
{
public override int Id => 11;
public override string Name => "SUV Carshop";
public override Vector3 Position => new Vector3(-69.40701, 62.74997, 71.89297);
public override Vector3 CarSpawnPositon => new Vector3(-109.4707, 43.15609, 71.44163);
public override float CarSpawnHeading => 356.6f;
public override int? BlipSprite => 225;
public override void Load()
{
}
}
}