This commit is contained in:
CortexCore
2024-05-31 01:23:15 +08:00
parent c798b224be
commit 299082fe27
164 changed files with 3604 additions and 2018 deletions

View File

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