public void Initialize() { this.menuTrophies = new MenuLayout(this, 450, 34); Trophies.add_OnGotGameInfo(new Messages.EventHandler(this.OnTrophyGotGameInfo)); Trophies.add_OnGotGroupInfo(new Messages.EventHandler(this.OnTrophyGotGroupInfo)); Trophies.add_OnGotTrophyInfo(new Messages.EventHandler(this.OnTrophyGotTrophyInfo)); Trophies.add_OnGotProgress(new Messages.EventHandler(this.OnTrophyGotProgress)); Trophies.add_OnAwardedTrophy(new Messages.EventHandler(this.OnSomeEvent)); Trophies.add_OnAwardTrophyFailed(new Messages.EventHandler(this.OnSomeEvent)); Trophies.add_OnAlreadyAwardedTrophy(new Messages.EventHandler(this.OnSomeEvent)); Trophies.add_OnUnlockedPlatinum(new Messages.EventHandler(this.OnSomeEvent)); }