Files
reallife-gamemode/ReallifeGamemode.Database/Entities/Saves/SavedVehicle.cs
Lennart Kampshoff c5f72c2ce5 Remove warnings
2019-12-21 13:49:33 +01:00

17 lines
339 B
C#

/**
* @overview Life of German Reallife - Saves SavedVehicle.cs
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace ReallifeGamemode.Database.Entities.Saves
{
public partial class SavedVehicle : ServerVehicle
{
public override string ToString()
{
return "Gespeichertes Fahrzeug";
}
}
}