8 lines
73 B
C++
Executable File
8 lines
73 B
C++
Executable File
#include "Point.h"
|
|
|
|
Point::Point(int _x, int _y)
|
|
{
|
|
x = _x;
|
|
y = _y;
|
|
}
|