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>(); }
public DbgAction( DbgKey activator, DbgActionDel action ) { this.activator = activator; this.action = action; }