#include "coords.h" coords::coords() { x = 0; y = 0; } coords::coords(int a, int b) { x = a; y = b; }