IW4M-Admin/SharedLibrary/Dvar.cs
RaidMax 11d37d4cd6 Added high ping kick functionality to Welcome Plugin
Added response to RCON command if applicable
Added more maps into the map config
2017-06-07 17:08:29 -04:00

14 lines
220 B
C#

namespace SharedLibrary
{
public class DVAR<T>
{
public string Name { get; private set; }
public T Value;
public DVAR(string name)
{
Name = name;
}
}
}