Ejemplo n.º 1
0
        public MainMenuForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
            : base(Game, ParentScene, CloseAction, ParentForm)
        {
            DaylyBonusForm = null;
            CreationTableForm = null;

            TablesSelectOptionsForm = null;
        }
Ejemplo n.º 2
0
 // Конструктор по имени
 public BaseBeloteControl(String Name)
 {
     AnchorPoint = new CGPoint (0, 0);
     parent = null;
     Sprite = null;
     Enabled = true;
     this.Name = Name;
 }
Ejemplo n.º 3
0
 // Конструтор: игровой объект, родительская сцена, событие завершения, родительская форма
 public BaseBeloteForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
 {
     this.Game = Game;
     this.ParentScene = ParentScene;
     this.CloseAction = CloseAction;
     this.Parent = ParentForm;
     if (Parent != null)
         BaseZPosition = Parent.BaseZPosition + 10;
     else
         BaseZPosition = 0;
     Controls = new List<BaseBeloteControl> ();
 }
Ejemplo n.º 4
0
 public AuthorizationForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
     PasswordRemindForm = null;
 }
 public TablesSelectOptionsForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Ejemplo n.º 6
0
 public PasswordRemindForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Ejemplo n.º 7
0
 public BaseBelotePopupForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Ejemplo n.º 8
0
 public DaylyBonusForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }