aboutsummaryrefslogtreecommitdiffstats
path: root/src/clicky.h
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-05-13 04:12:44 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-05-13 04:12:44 +0000
commit05b40b9046d7dea6f52872021932bda8855250c4 (patch)
tree3a4b684304688fb1b4c0993eb159049042efaff1 /src/clicky.h
parent4f14134623f319ce4afce9b303cc77762524b350 (diff)
downloadPenguinYippies-05b40b9046d7dea6f52872021932bda8855250c4.tar.gz
PenguinYippies-05b40b9046d7dea6f52872021932bda8855250c4.tar.bz2
PenguinYippies-05b40b9046d7dea6f52872021932bda8855250c4.zip
Working on gack
Diffstat (limited to 'src/clicky.h')
-rw-r--r--src/clicky.h6
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);