public MainMenuForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
            : base(Game, ParentScene, CloseAction, ParentForm)
        {
            DaylyBonusForm = null;
            CreationTableForm = null;

            TablesSelectOptionsForm = null;
        }
 public void TestDaylyBonus()
 {
     DaylyBonusForm = new DaylyBonusForm (this.Game, this.ParentScene, OnDaylyBonusFormClose, this);
     DaylyBonusForm.Show (Width - (Width / 6), Height / 2, Width / 12, Height / 4);
     ParentScene.ChangeActiveForm (DaylyBonusForm);
 }