Added vehicle indicators

This commit is contained in:
hydrant
2019-03-10 14:30:02 +01:00
parent ed069fd1d7
commit 0941501fff
4 changed files with 109 additions and 22 deletions

View File

@@ -0,0 +1,8 @@
namespace ReallifeGamemode.Server.Util
{
public class IndicatorData
{
public bool Left { get; set; } = false;
public bool Right { get; set; } = false;
}
}