diff options
Diffstat (limited to 'Rectangle.h')
-rw-r--r-- | Rectangle.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Rectangle.h b/Rectangle.h index a3d0a0d..a8d523b 100644 --- a/Rectangle.h +++ b/Rectangle.h @@ -1,9 +1,9 @@ #pragma once typedef struct { - unsigned int x; - unsigned int y; - unsigned int width; - unsigned int height; + float x; + float y; + float width; + float height; } Rectangle; |