1 2 3 4 5 6 7 8 9
#include "Position.h" Position::Position() : x(0), y(0) { } Position::Position(int aX, int aY) : x(aX), y(aY) { }