2011-12-08 17:18:05 +00:00
|
|
|
using System;
|
2011-12-20 20:16:50 +00:00
|
|
|
using ANX.Framework.NonXNA;
|
2011-12-08 17:18:05 +00:00
|
|
|
|
|
|
|
namespace RecordingSample
|
|
|
|
{
|
|
|
|
static class Program
|
|
|
|
{
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
2011-12-20 20:16:50 +00:00
|
|
|
//This is technically unessasary, because there is only a reference to the RecordingSystem...
|
2012-08-08 12:04:37 +00:00
|
|
|
AddInSystemFactory.Instance.SetPreferredSystem(AddInType.InputSystem, "Recording");
|
2011-12-20 20:16:50 +00:00
|
|
|
|
2011-12-08 17:18:05 +00:00
|
|
|
using (Game1 game = new Game1())
|
|
|
|
{
|
|
|
|
game.Run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|