Exemplo n.º 1
0
 public DbgAssistor( Game game )
     : base(game)
 {
     dbgFont = null;
     dbgColour = Color.HotPink;
     title = "Debug Info:";
     position = new Vector2( 3, 3 );
     dbgSwitch = new DbgKey( Keys.OemTilde, Buttons.Start );
     tokenCounter = 0;
     messages = new Dictionary<int,DbgMsg>();
     actions = new Dictionary<int,DbgAction>();
 }
Exemplo n.º 2
0
 public DbgAction( DbgKey activator, DbgActionDel action )
 {
     this.activator = activator;
     this.action = action;
 }