using GTANetworkAPI; using System; using System.Collections.Generic; using System.Text; namespace reallife_gamemode.Server.Business { public abstract class CarDealerBusinessBase : BusinessBase { public abstract Vector3 CarSpawnPositon { get; } public abstract float CarSpawnHeading { get; } } }