6 lines
61 B
C
6 lines
61 B
C
#pragma once
|
|
|
|
struct Point {
|
|
int x = 0;
|
|
int y = 0;
|
|
}; |