11d37d4cd6
Added response to RCON command if applicable Added more maps into the map config
14 lines
220 B
C#
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;
|
|
}
|
|
}
|
|
}
|