Exemplo n.º 1
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Game = new Game();
     Application.Run();
 }
Exemplo n.º 2
0
        public MainMenuForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
            : base(Game, ParentScene, CloseAction, ParentForm)
        {
            DaylyBonusForm = null;
            CreationTableForm = null;

            TablesSelectOptionsForm = null;
        }
Exemplo 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> ();
 }
Exemplo n.º 4
0
 public GameForm(Game game)
 {
     this.game = game;
     InitializeComponent();
     pCards = new PictureBox[8];
     pCards[0] = PlayerCard1PB;
     pCards[1] = PlayerCard2PB;
     pCards[2] = PlayerCard3PB;
     pCards[3] = PlayerCard4PB;
     pCards[4] = PlayerCard5PB;
     pCards[5] = PlayerCard6PB;
     pCards[6] = PlayerCard7PB;
     pCards[7] = PlayerCard8PB;
 }
 public TablesSelectOptionsForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Exemplo n.º 6
0
 public WaitingForm(Game Game)
 {
     this.game = Game;
     InitializeComponent();
     CreatorPanel.Visible = (Game.Information.Place == 1);
 }
Exemplo n.º 7
0
 public MainGuestForm(Game Game)
 {
     this.game = Game;
     InitializeComponent();
 }
Exemplo n.º 8
0
 public PasswordRemindForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Exemplo n.º 9
0
 public GameGraphics(Game Game)
 {
     this.Game = Game;
 }
Exemplo n.º 10
0
 public AuthorizationForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
     PasswordRemindForm = null;
 }
Exemplo n.º 11
0
 public BonusAnnounceForm(Game game)
 {
     this.game = game;
     InitializeComponent();
     UpdateBonusCheckList();
 }
Exemplo n.º 12
0
 public MainUserForm(Game Game)
 {
     this.game = Game;
     CurrentTableID = -1;
     InitializeComponent();
 }
Exemplo n.º 13
0
 public BaseBelotePopupForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Exemplo n.º 14
0
 public DaylyBonusForm(Game Game, BaseBeloteScene ParentScene, BeloteFormAction CloseAction, BaseBeloteForm ParentForm)
     : base(Game, ParentScene, CloseAction, ParentForm)
 {
 }
Exemplo n.º 15
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad ();

            Game = new Game ((SKView)View);
        }
Exemplo n.º 16
0
 public BetFormType4(Game game)
 {
     InitializeComponent();
     this.game = game;
 }
Exemplo n.º 17
0
 public RegistrationEmail(Game Game)
 {
     this.game = Game;
     InitializeComponent();
 }
Exemplo n.º 18
0
 public CreatingTableForm(Game Game)
 {
     this.game = Game;
     InitializeComponent();
 }
Exemplo n.º 19
0
 public GameGraphics(Game Game, SKView GameView)
 {
     this.Game = Game;
     this.GameView = GameView;
 }
Exemplo n.º 20
0
 public EmailAutorizationForm(Game Game)
 {
     game = Game;
     InitializeComponent();
 }
Exemplo n.º 21
0
 public BetFromType123(Game game)
 {
     InitializeComponent();
     this.game = game;
 }