first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
struct Point
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
|
||||
Point(
|
||||
int x = 0,
|
||||
int y = 0
|
||||
)
|
||||
:
|
||||
x(x),
|
||||
y(y)
|
||||
{
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user