Virtu/Virtu/Xna/MainApp.cs
Sean Fausett 8382195feb Initial sound emulation for WPF and XNA+Windows platforms via COM interop to DirectSound.
Added rudimentary UI to Silverlight and WPF platforms to enable disk selection at runtime.

--HG--
extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4024459
2009-07-26 23:22:00 +00:00

14 lines
234 B
C#

namespace Jellyfish.Virtu
{
static class MainApp
{
static void Main()
{
using (MainGame game = new MainGame())
{
game.Run();
}
}
}
}