Skip to content

Commit 0e48089

Browse files
committed
Billiards_pro
0 parents  commit 0e48089

16 files changed

+11510
-0
lines changed

4.jpg

164 KB
Loading

5.jpg

105 KB
Loading

5.png

151 KB
Loading

6.png

147 KB
Loading

Billiards_pro.cbproj

+1,345
Large diffs are not rendered by default.

Billiards_pro.cbproj.local

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<BorlandProject>
3+
<Transactions>
4+
<Transaction>2020/11/05 16:18:45.000.777,=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Project1PCH1.h</Transaction>
5+
<Transaction>2020/11/05 16:18:45.000.879,=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Unit1.cpp</Transaction>
6+
<Transaction>2021/01/31 15:11:49.000.822,=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Unit1.cpp</Transaction>
7+
<Transaction>2021/01/31 15:11:50.000.127,=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Project1PCH1.h</Transaction>
8+
<Transaction>2021/01/31 15:12:06.000.058,C:\Users\abdalkader\Desktop\new_fishing\main.h=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Unit1.h</Transaction>
9+
<Transaction>2021/01/31 15:12:06.000.058,C:\Users\abdalkader\Desktop\new_fishing\main.fmx=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Unit1.fmx</Transaction>
10+
<Transaction>2021/01/31 15:12:06.000.058,C:\Users\abdalkader\Desktop\new_fishing\main.cpp=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Unit1.cpp</Transaction>
11+
<Transaction>2021/01/31 15:12:17.000.818,C:\Users\abdalkader\Desktop\new_fishing\Project1PCH1.h=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Project1PCH1.h</Transaction>
12+
<Transaction>2021/01/31 15:12:24.000.753,C:\Users\abdalkader\Desktop\new_fishing\new_fishing.cbproj=C:\Users\abdalkader\Documents\Embarcadero\Studio\Projects\Project1.cbproj</Transaction>
13+
<Transaction>2021/01/31 15:12:24.000.638,C:\Users\abdalkader\Desktop\new_fishing\new_fishingPCH1.h=C:\Users\abdalkader\Desktop\new_fishing\Project1PCH1.h</Transaction>
14+
<Transaction>2021/05/01 03:31:38.000.676,D:\New folder\my_cpp_projects\new_fishing\new_fishing.cbproj=D:\New folder\my_cpp_projects\new_fishing\snake_pro.cbproj</Transaction>
15+
<Transaction>2021/05/01 03:31:38.000.608,D:\New folder\my_cpp_projects\new_fishing\new_fishingPCH1.h=D:\New folder\my_cpp_projects\new_fishing\snake_proPCH1.h</Transaction>
16+
<Transaction>2021/05/05 01:05:02.000.569,D:\New folder\my_cpp_projects\‏‏snake_pro_good\snake_proPCH1.h=D:\New folder\my_cpp_projects\‏‏snake_pro_good\Billyards_proPCH1.h</Transaction>
17+
<Transaction>2021/05/05 01:05:02.000.677,D:\New folder\my_cpp_projects\‏‏snake_pro_good\snake_pro.cbproj=D:\New folder\my_cpp_projects\‏‏snake_pro_good\Billyards_pro.cbproj</Transaction>
18+
<Transaction>2021/05/05 13:49:51.000.309,D:\CPP_pro\Billyards_pro\Billiards_proPCH1.h=D:\CPP_pro\Billyards_pro\Billyards_proPCH1.h</Transaction>
19+
<Transaction>2021/05/05 13:49:51.000.343,D:\CPP_pro\Billyards_pro\Billiards_pro.cbproj=D:\CPP_pro\Billyards_pro\Billyards_pro.cbproj</Transaction>
20+
</Transactions>
21+
<ActiveMobileDevice>
22+
<NoProfile Android="4d0025d0dc0dc100"/>
23+
</ActiveMobileDevice>
24+
</BorlandProject>

Billiards_pro.cpp

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
//---------------------------------------------------------------------------
2+
3+
#include <fmx.h>
4+
#ifdef _WIN32
5+
#include <tchar.h>
6+
#endif
7+
#pragma hdrstop
8+
#include <System.StartUpCopy.hpp>
9+
//---------------------------------------------------------------------------
10+
USEFORM("main.cpp", Form1);
11+
//---------------------------------------------------------------------------
12+
extern "C" int FMXmain()
13+
{
14+
try
15+
{
16+
Application->Initialize();
17+
Application->CreateForm(__classid(TForm1), &Form1);
18+
Application->Run();
19+
}
20+
catch (Exception &exception)
21+
{
22+
Application->ShowException(&exception);
23+
}
24+
catch (...)
25+
{
26+
try
27+
{
28+
throw Exception("");
29+
}
30+
catch (Exception &exception)
31+
{
32+
Application->ShowException(&exception);
33+
}
34+
}
35+
return 0;
36+
}
37+
//---------------------------------------------------------------------------

Billiards_pro.res

112 KB
Binary file not shown.

Billiards_proPCH1.h

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include <fmx.h>
2+
#ifdef _WIN32
3+
#include <tchar.h>
4+
#endif
5+

Billyards_pro.res

112 KB
Binary file not shown.

ball.mp3

3.82 KB
Binary file not shown.

ball.wav

34 KB
Binary file not shown.

0 commit comments

Comments
 (0)