Browse Source

add float point

Tim Strasser 2 năm trước cách đây
mục cha
commit
9a464804a7
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      includes/point.h

+ 5 - 0
includes/point.h

@@ -6,4 +6,9 @@ typedef struct {
     int y;
 } POINT;
 
+typedef struct {
+    float x;
+    float y;
+} POINTF;
+
 #endif // POINT_H