Neues Autohaus

This commit is contained in:
hydrant
2019-09-02 20:30:21 +02:00
parent 596bad44af
commit e9eac2e94b

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
namespace ReallifeGamemode.Server.Business
{
internal class PremiumDeluxeMotorsportCarDealerBusiness : CarDealerBusinessBase
{
public override Vector3 CarSpawnPositon => new Vector3(-59, -1108.1, 26.5);
public override float CarSpawnHeading => 0;
public override int Id => 4;
public override string Name => "Premium Deluxe Motorsport";
public override Vector3 Position => new Vector3(-31.56, -1113.5, 26.42);
public override void Load()
{
}
}
}