diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-13 04:12:44 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-05-13 04:12:44 +0000 |
commit | 05b40b9046d7dea6f52872021932bda8855250c4 (patch) | |
tree | 3a4b684304688fb1b4c0993eb159049042efaff1 /src/clicky.h | |
parent | 4f14134623f319ce4afce9b303cc77762524b350 (diff) | |
download | PenguinYippies-05b40b9046d7dea6f52872021932bda8855250c4.tar.gz PenguinYippies-05b40b9046d7dea6f52872021932bda8855250c4.tar.bz2 PenguinYippies-05b40b9046d7dea6f52872021932bda8855250c4.zip |
Working on gack
Diffstat (limited to 'src/clicky.h')
-rw-r--r-- | src/clicky.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/clicky.h b/src/clicky.h index 819c177..404539c 100644 --- a/src/clicky.h +++ b/src/clicky.h @@ -36,12 +36,16 @@ typedef struct Clicky { // ittle thingy used by the clicker typedef struct Clicker { double timeLastClicked; - double delay; } Clicker; typedef struct Clickies { Clicky clickies[MAX_CLICKIES]; size_t clickiesCount; + + struct { + int penguinLolStonesPerClick; + double clickersDelay; + } settings; } Clickies; void initClickies(Clickies* clickies); |