Files
piphoto/coord.h
Ian Gulliver e58083d989 Move Coord3d
2017-08-07 06:19:12 +00:00

18 lines
227 B
C++

#pragma once
#include <cstdint>
#include <ostream>
struct Coord {
uint32_t x;
uint32_t y;
};
struct Coord3d {
uint32_t r;
uint32_t g;
uint32_t b;
};
std::ostream& operator<<(std::ostream& os, const Coord& coord);