Files
reallife-gamemode/ReallifeGamemode.Server.Types/VehicleData.cs
2020-03-01 18:45:03 +01:00

14 lines
230 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Types
{
public class VehicleData
{
public bool EngineState { get; set; }
public bool Locked { get; set; }
}
}