-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMineSweeper.dpr
More file actions
34 lines (28 loc) · 1 KB
/
MineSweeper.dpr
File metadata and controls
34 lines (28 loc) · 1 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
program MineSweeper;
{$R 'Media.res' 'Media.rc'}
uses
System.StartUpCopy,
FMX.Forms,
uMineSweeper in 'uMineSweeper.pas' {Form5},
uField in 'uField.pas',
uField.View in 'uField.View.pas' {FieldView: TFrame},
uImages in 'uImages.pas',
uStartScreen in 'uStartScreen.pas' {StartScreen: TFrame},
uInstructions in 'uInstructions.pas' {Instructions: TFrame},
uArrow in 'Resources\uArrow.pas' {Arrow: TFrame},
uSelector in 'Resources\uSelector.pas' {Selector: TFrame},
uButton in 'Resources\uButton.pas' {GameButton: TFrame},
uGameInterfaces in 'uGameInterfaces.pas',
uLose in 'uLose.pas' {Lose: TFrame},
uWin in 'uWin.pas' {Win: TFrame},
uGameScore in 'uGameScore.pas' {Score: TFrame},
uGameActions in 'uGameActions.pas' {Actions: TFrame},
uPause in 'uPause.pas' {Pause: TFrame},
uMedia in 'uMedia.pas',
uConfig in 'uConfig.pas' {Config: TFrame};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm5, Form5);
Application.Run;
end.