Blackjack

This commit is contained in:
2026-09-07 14:12:08 +02:00
parent a1090ddfe2
commit abe9867cb1
4 changed files with 95 additions and 1 deletions
+7 -1
View File
@@ -30,9 +30,15 @@ namespace Casino
private void Sound_Click(object sender, RoutedEventArgs e)
{
Database data = new Database();
byte[] blobData = data.GetSound(2);
byte[] blobData = data.GetSound(3);
var audioService = new Audioplayer();
audioService.PlayMusic(blobData);
}
private void Blackjack_Click(object sender, RoutedEventArgs e)
{
Blackjack slotsWindow = new Blackjack();
slotsWindow.Show();
}
}
}