Skip to content

Commit 73d2361

Browse files
committed
Jogo da velha FMX
1 parent ec3895a commit 73d2361

File tree

4 files changed

+1959
-0
lines changed

4 files changed

+1959
-0
lines changed

Diff for: JogoDaVelha/JogoDaVelha.dpr

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
program JogoDaVelha;
2+
3+
uses
4+
System.StartUpCopy,
5+
FMX.Forms,
6+
uMain in 'uMain.pas' {Form1};
7+
8+
{$R *.res}
9+
10+
begin
11+
Application.Initialize;
12+
Application.CreateForm(TForm1, Form1);
13+
Application.Run;
14+
end.

0 commit comments

Comments
 (0)