mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
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;
|
|
}
|
|
}
|
|
}
|