C_CPP/src/06_POLY/MP/Position.h
Johannes Theiner 65ea034511 06_POLY_MP: Modifikationen durchgefügt
Signed-off-by: Johannes Theiner <j.theiner@live.de>
2018-11-16 14:58:33 +01:00

14 lines
184 B
C

#ifndef C_C_POSITION_H
#define C_C_POSITION_H
struct Position {
int x;
int y;
explicit Position(int x_ = 0, int y_ = 0) {
x = x_;
y = y_;
}
};
#endif