-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
45 lines (34 loc) · 1.28 KB
/
Program.cs
File metadata and controls
45 lines (34 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using Pacman;
namespace Pacman
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
var form = new GameForm();
Application.Run(form);
}
}
}
/*
в GameForm
надо после вывода винформы прекращать игру,
а еще нормально выводить форму для лузера
как сделать бэкграунд?
настроить переключение уровней
почему во втором уровне монстр натыкаясь на монетку вызывает ошибку? кстати не всегда
и кнопки сделать
наделала кучу фигни в Gameform, Winnerform, сделала Level в Game статиком,
хочу менять уровни при нажатии кнопки в виннерформе; надо сделать Reset.
*/