1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Various fixes and renamed 'libary' to 'library'

This commit is contained in:
RaidMax
2015-08-27 23:39:36 -05:00
parent c23e578319
commit 995334796e
31 changed files with 146 additions and 129 deletions

19
SharedLibrary/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;
}
}