edit: made board UI prefabs

This commit is contained in:
Iced-lemon 2023-01-29 14:57:08 +08:00
parent 594690545b
commit c98652c00f
27 changed files with 3759 additions and 313 deletions

View file

@ -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)