[+] Add Driving License to Interaction Menu and as 'Object' to show other Players via the Interaction menu
This commit is contained in:
28
ReallifeGamemode.Server/DrivingSchool/Licenses.cs
Normal file
28
ReallifeGamemode.Server/DrivingSchool/Licenses.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ReallifeGamemode.Server.DrivingSchool
|
||||
{
|
||||
public class Licenses
|
||||
{
|
||||
[JsonProperty("drivingLicenseCar")]
|
||||
public bool CarLicense { get; set; }
|
||||
|
||||
[JsonProperty("drivingLicenseBike")]
|
||||
public bool BikeLicense { get; set; }
|
||||
|
||||
[JsonProperty("flightLicensePlane")]
|
||||
public bool PlaneLicense { get; set; }
|
||||
|
||||
|
||||
public Licenses(bool CarLicense, bool BikeLicense, bool PlaneLicense)
|
||||
{
|
||||
this.CarLicense = CarLicense;
|
||||
this.BikeLicense = BikeLicense;
|
||||
this.PlaneLicense = PlaneLicense;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user