예제 #1
0
파일: Program.cs 프로젝트: MiLO83/snesbox
 static void Main(string[] args)
 {
     using (var game = new SnesBoxGame() { CartridgePath = args[0] })
     {
         game.Run();
     }
 }
예제 #2
0
파일: Input.cs 프로젝트: MiLO83/snesbox
 public Input(SnesBoxGame game)
     : base(game)
 {
     LibSnes.InputState += new EventHandler<InputStateEventArgs>(OnInputState);
 }