Sound test

This commit is contained in:
NBTEMP\bib
2026-09-03 11:31:57 +02:00
parent 4c9cd48ec0
commit d038cd9503
6 changed files with 93 additions and 18 deletions
+3
View File
@@ -10,7 +10,9 @@ namespace Casino
public class Slot_System
{
int[,] slots = new int[3, 6];
bool fertig = false;
public bool getFertig () { return fertig; }
public async Task roll()
{
@@ -26,6 +28,7 @@ namespace Casino
counter++;
await Task.Delay(1000);
}
fertig = true;
}