diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-10-31 20:06:47 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-10-31 20:06:47 -0400 |
| commit | 11ca9986316d47f179bac21b5082880a3f517ba6 (patch) | |
| tree | a8f80b631b5de57d3edd56b352e7c63f49edc337 /balls.h | |
| parent | d13db0592573332fe32d9668d822a0cc0c2e920e (diff) | |
| download | balls-11ca9986316d47f179bac21b5082880a3f517ba6.zip | |
change vector type from int to float
Diffstat (limited to 'balls.h')
| -rw-r--r-- | balls.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ typedef struct { - int x, y; + float x, y; } Vector; typedef struct { |