mirror of
https://github.com/LazyDuchess/OpenTS2.git
synced 2025-01-23 00:31:47 -05:00
Update GamePropertyAttribute.cs
This commit is contained in:
parent
46ff93ac9c
commit
a4779995b8
1 changed files with 2 additions and 2 deletions
|
@ -16,12 +16,12 @@ namespace OpenTS2.Engine
|
||||||
public string Name { get; private set; }
|
public string Name { get; private set; }
|
||||||
public bool User { get; private set; }
|
public bool User { get; private set; }
|
||||||
|
|
||||||
public GamePropertyAttribute(bool userProp)
|
public GamePropertyAttribute(bool userProp = false)
|
||||||
{
|
{
|
||||||
User = userProp;
|
User = userProp;
|
||||||
}
|
}
|
||||||
|
|
||||||
public GamePropertyAttribute(string name, bool userProp)
|
public GamePropertyAttribute(string name, bool userProp = false)
|
||||||
{
|
{
|
||||||
Name = name;
|
Name = name;
|
||||||
User = userProp;
|
User = userProp;
|
||||||
|
|
Loading…
Reference in a new issue