From 11ca9986316d47f179bac21b5082880a3f517ba6 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Thu, 31 Oct 2024 20:06:47 -0400 Subject: change vector type from int to float --- balls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'balls.h') diff --git a/balls.h b/balls.h index ef2589b..d796e5c 100644 --- a/balls.h +++ b/balls.h @@ -1,5 +1,5 @@ typedef struct { - int x, y; + float x, y; } Vector; typedef struct { -- cgit v1.2.3