Files
reallife-gamemode/ReallifeGamemode.Server/Job/BusDriverJob.cs
2019-07-17 19:52:55 +02:00

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;
}
}