public GameRoomsForms(Boolean caller, GameProfileClasse gameProfileClasse, EventHandler ClouseRooms, EventHandler IformationRoom) // tirar isso. { InitializeComponent(); this.caller = caller; this.gameProfileClasse = gameProfileClasse; this.ClouseRooms = ClouseRooms; this.IformationRoom = IformationRoom; }
public GameStoreForms(EventHandler pbxCloseStore, Dictionary <string, GameWeaponsClasse> ItemStore, GameProfileClasse gameProfileClasse, EventHandler BuyItemOnCLick) { InitializeComponent(); this.gameProfileClasse = gameProfileClasse; this.ValueWallet = this.gameProfileClasse.GetEsmeraldPlayer(); this.lblWallet.Text = $"{this.ValueWallet}£"; this.itemStore = ItemStore; this.PbxCloseStore = pbxCloseStore; this.BuyItemOnCLick = BuyItemOnCLick; ColumnsDatagrid(); }
public GameChatPlayerFroms(GameProfileClasse gameProfileClasse, EventHandler closeChat, EventHandler MessageSendMessageOnClik, EventHandler loadContactsOnLoad, EventHandler GetMessageOnLoad, EventHandler GetSearchPlayer) { InitializeComponent(); this.loadContactsOnLoad = loadContactsOnLoad; this.profileClasse = gameProfileClasse; this.sendMensage = MessageSendMessageOnClik; this.closeChat = closeChat; this.GetMessageOnLoad = GetMessageOnLoad; this.GetSearchPlayer = GetSearchPlayer; this.myPlayer = this.profileClasse.GetLoginPlayer(); this.sender_id_tbPlayer = this.profileClasse.GetIdPlayer(); }
public GameProfileForms(GameProfileClasse gameProfileClasse, EventHandler eventHandler) { InitializeComponent(); this.gameProfile = gameProfileClasse; this.PbxProfileClouseOnClick = eventHandler; }