More file split

This commit is contained in:
Ian Gulliver
2017-08-06 19:39:11 +00:00
parent 2fbb92c385
commit acaac65ac5
11 changed files with 340 additions and 305 deletions

11
coord.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <cstdint>
#include <ostream>
struct Coord {
uint32_t x;
uint32_t y;
};
std::ostream& operator<<(std::ostream& os, const Coord& coord);