1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-16 18:19:38 -05:00

Massive refactoring and rudimentary plugin support.

This commit is contained in:
Michael Snyder
2015-08-20 00:06:44 -05:00
parent d3e42541ea
commit cd85a5c384
39 changed files with 2601 additions and 999 deletions

19
SharedLibary/Dvar.cs Normal file
View File

@ -0,0 +1,19 @@
using System;
using System.Runtime.InteropServices;
using System.Text;
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;
}
}