IW4M-Admin/SharedLibraryCore/RCon/StaticHelpers.cs

19 lines
439 B
C#
Raw Normal View History

2018-04-08 02:44:42 -04:00
using System;
2018-04-08 02:44:42 -04:00
namespace SharedLibraryCore.RCon
{
public static class StaticHelpers
{
public enum QueryType
{
GET_STATUS,
GET_INFO,
DVAR,
COMMAND,
}
public static char SeperatorChar = (char)int.Parse("0a", System.Globalization.NumberStyles.AllowHexSpecifier);
public static readonly TimeSpan SocketTimeout = new TimeSpan(0, 0, 5);
}
}