edit: made board UI prefabs
This commit is contained in:
parent
594690545b
commit
c98652c00f
27 changed files with 3759 additions and 313 deletions
|
@ -12,9 +12,9 @@ namespace Lemon.GenericLib.Generics
|
|||
public bool Enabled => enabled;
|
||||
public T Value => value;
|
||||
|
||||
public Optional(T initialValue)
|
||||
public Optional(T initialValue, bool start)
|
||||
{
|
||||
enabled = true;
|
||||
enabled = start;
|
||||
value = initialValue;
|
||||
}
|
||||
public void Set(T initialValue)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue