15 lines
271 B
C#
15 lines
271 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using GTANetworkAPI;
|
|
|
|
namespace ReallifeGamemode.Server.Job
|
|
{
|
|
class TaxiDriverJob : JobBase
|
|
{
|
|
public override int Id => 1;
|
|
|
|
public override string Name => "Taxifahrer";
|
|
}
|
|
}
|