1
This commit is contained in:
@@ -31,12 +31,12 @@ namespace BITKit
|
||||
{
|
||||
public int frameRate = 30;
|
||||
public PlayerState state;
|
||||
protected List<T> list = new();
|
||||
public List<T> list { get; protected set; } =new();
|
||||
public bool isPlaying;
|
||||
public event Action onStart;
|
||||
public event Action onStop;
|
||||
protected T current;
|
||||
Timer timer = new() { AutoReset = true };
|
||||
private Timer timer = new() { AutoReset = true };
|
||||
public void Start()
|
||||
{
|
||||
if (isPlaying is false)
|
||||
|
Reference in New Issue
Block a user