Implement conversion of Unit to String and back
This commit is contained in:
parent
7a75fbd369
commit
b77411121a
6 changed files with 188 additions and 31 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue