halo bitteschön 2 neue autohaus bitte mit scharf

This commit is contained in:
hydrant
2021-04-17 02:41:25 +02:00
parent e6940c222a
commit 6900f6e172
4 changed files with 52 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
namespace ReallifeGamemode.Server.Business
{
class OldschoolCarshop : CarDealerBusinessBase
{
public override int Id => 13;
public override string Name => "Oldschool Carshop";
public override Vector3 Position => new Vector3(-1888.1119, 2049.722, 140.9831);
public override Vector3 CarSpawnPositon => new Vector3(-1883.5817, 2029.6252, 140.55038);
public override float CarSpawnHeading => 163.73;
public override void Load()
{
}
}
}