Added Boat and Helicopter Dealer
This commit is contained in:
25
ReallifeGamemode.Server/Business/BoatDealerBusiness.cs
Normal file
25
ReallifeGamemode.Server/Business/BoatDealerBusiness.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using GTANetworkAPI;
|
||||
|
||||
namespace ReallifeGamemode.Server.Business
|
||||
{
|
||||
public class BoatDealerBusiness : CarDealerBusinessBase
|
||||
{
|
||||
public override int Id => 5;
|
||||
|
||||
public override string Name => "Marina";
|
||||
|
||||
public override Vector3 Position => new Vector3(-785.9267,- 1355.77, 5.150267);
|
||||
|
||||
public override Vector3 CarSpawnPositon => new Vector3(-792.5602, - 1433.158, 1.333062);
|
||||
|
||||
public override float CarSpawnHeading => 356.6f;
|
||||
|
||||
public override void Load()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user