13 lines
274 B
C#
13 lines
274 B
C#
using GTANetworkAPI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace reallife_gamemode.Server.Business
|
|
{
|
|
public abstract class CarDealerBusinessBase : BusinessBase
|
|
{
|
|
internal abstract Vector3 CarSpawnPositon { get; }
|
|
}
|
|
}
|