827e69f70a
some stat stuff still not working made seperate parsers
14 lines
224 B
C#
14 lines
224 B
C#
namespace SharedLibraryCore
|
|
{
|
|
public class Dvar<T>
|
|
{
|
|
public string Name { get; private set; }
|
|
public T Value;
|
|
|
|
public Dvar(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|