OpenBve.Interface.GetBlackBoxText C# (CSharp) Method

GetBlackBoxText() static private method

Gets the formatted output text for a black box event token
static private GetBlackBoxText ( Game EventToken ) : string
EventToken Game The event token for which to get the text
return string
		internal static string GetBlackBoxText(Game.BlackBoxEventToken EventToken)
		{
			//TODO: Only returns a blank string, what was intended here???
			switch (EventToken)
			{
				default: return "";
			}
		}