Finished business system

This commit is contained in:
hydrant
2018-11-27 16:05:42 +01:00
parent 1de28e880d
commit 94161f4f63
3 changed files with 67 additions and 25 deletions

View File

@@ -11,7 +11,7 @@ namespace reallife_gamemode.Server.Business
public override string Name => "24/7 Business";
public override Vector3 Position => new Vector3();
public override Vector3 Position => new Vector3(-443, 1134, 326);
public override void Load()
{

View File

@@ -1,23 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
using GTANetworkAPI;
using reallife_gamemode.Model;
using reallife_gamemode.Server.Util;
namespace reallife_gamemode.Server.Business
{
class TestBusiness : BusinessBase
{
public override int Id => 0;
public override string Name => "Test Business";
public override Vector3 Position => new Vector3(-443, 1134, 326);
public override void Load()
{
}
}
}