16 lines
288 B
C#
16 lines
288 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Job
|
|
{
|
|
class BusDriverJob : JobBase
|
|
{
|
|
public override int Id => 4;
|
|
|
|
public override string Name => "Busfahrer";
|
|
|
|
public override bool NeedVehicleToStart => true;
|
|
}
|
|
}
|