Files
reallife-gamemode/ReallifeGamemode.Server/Job/PilotJob.cs

14 lines
240 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Job
{
class PilotJob : JobBase
{
public override int Id => 3;
public override string Name => "Pilot";
}
}