riversong code showcase
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Unity.Properties;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public class SpeedControlsPanelModel : UIModel
|
||||
{
|
||||
private int _speedLevel;
|
||||
|
||||
[CreateProperty]
|
||||
public int SpeedLevel
|
||||
{
|
||||
get => _speedLevel;
|
||||
set => SetProperty(ref _speedLevel, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user