Add Bus driver job

This commit is contained in:
hydrant
2019-06-24 21:44:23 +02:00
parent 392927ccea
commit 431f4fc4da

View File

@@ -0,0 +1,15 @@
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;
}
}