Weaponschein im Interaktionsmenü anzeigen

This commit is contained in:
hydrant
2020-03-14 00:21:35 +01:00
parent ff6e8c20aa
commit 1d82b3f3e2
4 changed files with 17 additions and 4 deletions

View File

@@ -16,12 +16,16 @@ namespace ReallifeGamemode.Server.DrivingSchool
[JsonProperty("flightLicensePlane")]
public bool PlaneLicense { get; set; }
[JsonProperty("weaponLicense")]
public bool WeaponLicense { get; set; }
public Licenses(bool CarLicense, bool BikeLicense, bool PlaneLicense)
public Licenses(bool CarLicense, bool BikeLicense, bool PlaneLicense, bool weaponLicense)
{
this.CarLicense = CarLicense;
this.BikeLicense = BikeLicense;
this.PlaneLicense = PlaneLicense;
this.WeaponLicense = weaponLicense;
}
}