Glatzemann aa75450b34 - added samples to build file
- improved error handling and logging during AddIn loading
2012-08-29 18:29:57 +00:00

21 lines
507 B
C#

using System;
using ANX.Framework.NonXNA;
namespace RecordingSample
{
static class Program
{
static void Main(string[] args)
{
//This is technically unessasary, because there is only a reference to the RecordingSystem...
AddInSystemFactory.Instance.SetPreferredSystem(AddInType.InputSystem, "Recording");
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}