14 lines
312 B
C#
14 lines
312 B
C#
using GTANetworkAPI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Business
|
|
{
|
|
public abstract class CarDealerBusinessBase : BusinessBase
|
|
{
|
|
public abstract Vector3 CarSpawnPositon { get; }
|
|
public abstract float CarSpawnHeading { get; }
|
|
}
|
|
}
|