start group system

This commit is contained in:
Lennart Kampshoff
2019-05-05 17:07:29 +02:00
parent e1dd54b7c5
commit a34c03eae9
9 changed files with 1382 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Entities
{
public class GroupVehicle : ServerVehicle
{
public Group Group { get; set; }
public override string ToString()
{
return "Gruppen Fahrzeug | Gruppe: " + Group.Name;
}
}
}