22 lines
429 B
C#
22 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using GTANetworkAPI;
|
|
|
|
namespace ReallifeGamemode.Server.Business
|
|
{
|
|
public class TelefonBusiness : BusinessBase
|
|
{
|
|
public override int Id => 1;
|
|
|
|
public override string Name => "Telefon Business";
|
|
|
|
public override Vector3 Position => new Vector3(-423, 1130, 326);
|
|
|
|
public override void Load()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|