diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-22 19:19:43 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-22 19:19:43 +0000 |
commit | d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa (patch) | |
tree | 0ee4b8533b28eb3e3d4be034c0eb356d83b98734 /src/clicky.h | |
parent | 1ce1a705c61064e44f83c772b70ee9b208a4c289 (diff) | |
download | PenguinYippies-d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa.tar.gz PenguinYippies-d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa.tar.bz2 PenguinYippies-d6c58243b7b9d90e5e23af2f3c866ddf316cb0fa.zip |
Can now use pixel data for collision
Diffstat (limited to 'src/clicky.h')
-rw-r--r-- | src/clicky.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/clicky.h b/src/clicky.h index 764df00..12b3b12 100644 --- a/src/clicky.h +++ b/src/clicky.h @@ -13,6 +13,9 @@ typedef struct Clicky { Texture* texture; Rectangle rect; + // Used for color collision stuff. + Color* colors; + void* data; ClickyUpdateCB updateCB; } Clicky; |