aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-11-06 06:11:56 +0000
committernathan <nathansmith@disroot.org>2025-11-06 06:11:56 +0000
commit485584966a5592eec6fd8b3b815cb23f26984733 (patch)
treef122a611a7693df1a514cb3169e1e8cdb9439d11 /src/utils.h
parent754fc059c3a6b3a1bc204f87d58152dbb65b2abe (diff)
downloadFindThings-485584966a5592eec6fd8b3b815cb23f26984733.tar.gz
FindThings-485584966a5592eec6fd8b3b815cb23f26984733.tar.bz2
FindThings-485584966a5592eec6fd8b3b815cb23f26984733.zip
Window thingy hehehehe
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/utils.h b/src/utils.h
index eba0333..96261b9 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -67,19 +67,7 @@ typedef enum FTError {
FTSUCCESS = 0
} FTError;
-typedef struct {
- Rectangle rect;
- bool minimized;
- bool moving;
- bool resizing;
- DrawWindowContentCallback callback;
- Vector2 contentSize;
- Vector2 scroll;
-} FloatingWindow;
-
Vector2 randomDirection2(int seed, int* nextSeed);
Vector3 randomDirection3(int seed, int* nextSeed);
-void updateFloatWindow(FloatingWindow* window, const char* title);
-
#endif