mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
Added high ping kick functionality to Welcome Plugin
Added response to RCON command if applicable Added more maps into the map config
This commit is contained in:
@ -1,28 +1,11 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace SharedLibrary
|
||||
namespace SharedLibrary
|
||||
{
|
||||
public struct dvar
|
||||
{
|
||||
public String name;
|
||||
public String description;
|
||||
public int flags;
|
||||
public short type;
|
||||
public String current;
|
||||
public String latched;
|
||||
public String _default;
|
||||
public int min;
|
||||
public int max;
|
||||
}
|
||||
|
||||
public class _DVAR<T>
|
||||
public class DVAR<T>
|
||||
{
|
||||
public string Name { get; private set; }
|
||||
public T Value;
|
||||
|
||||
public _DVAR(string name)
|
||||
public DVAR(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
|
Reference in New Issue
Block a user