24 lines
485 B
C#
24 lines
485 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|