17 lines
343 B
C#
17 lines
343 B
C#
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;
|
|
}
|
|
}
|
|
}
|