Added mozart and a project

This commit is contained in:
2025-08-11 13:51:04 +02:00
commit efd664fd2d
1131 changed files with 8175 additions and 0 deletions

24
Program.cs Normal file
View File

@@ -0,0 +1,24 @@
namespace Mozart
{
public class Program
{
static async Task Main(string[] args)
{
SoundHandler soundHandler = new SoundHandler();
Instrument instrument = Instrument.clarinet;
for (int i = 0; i < 16; i++)
{
await soundHandler.PlayAudioAsync(soundHandler.getPath(instrument, SoundType.minuet, i, new Die(6).Throw(2)));
}
for (int i = 0; i < 16; i++)
{
await soundHandler.PlayAudioAsync(soundHandler.getPath(instrument, SoundType.trio, i, new Die(6).Throw()));
}
Console.WriteLine("Hello, World!");
}
}
}