first commit

This commit is contained in:
2026-06-05 11:45:04 +03:00
commit b457544071
29 changed files with 1725 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
struct Point
{
int x;
int y;
Point(
int x = 0,
int y = 0
)
:
x(x),
y(y)
{
}
};