Implement conversion of Unit to String and back

This commit is contained in:
Marc Di Luzio 2014-12-16 13:13:02 +00:00
parent 7a75fbd369
commit b77411121a
6 changed files with 188 additions and 31 deletions

View file

@ -7,6 +7,7 @@ struct uvector2;
struct vector2
{
vector2() : x (0), y (0) {}
vector2( coord_t _x, coord_t _y )
: x(_x)
, y(_y)
@ -32,6 +33,7 @@ struct vector2
struct uvector2
{
uvector2() : x (0), y (0) {}
uvector2( ucoord_t _x, ucoord_t _y )
: x(_x)
, y(_y)