Automatic add business bank account, renamed sms to telephone business

This commit is contained in:
hydrant
2018-11-22 18:06:27 +01:00
parent cef42180c9
commit 74dc1db8af
3 changed files with 38 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
namespace reallife_gamemode.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()
{
}
}
}