LibreSplit/include/opts.h
Penaz 3f2ba7f54c Restructuring project folders
This should allow for plugins to refer to LibreSplit's functions without
having to pull in half of the codebase.
2026-03-25 21:57:10 +01:00

13 lines
484 B
C

#pragma once
#include <glib.h>
/**
* @brief The LSAppWindow options
*/
typedef struct {
gboolean hide_cursor; /*!< Defines whether the cursor should be hidden when on top of LibreSplit */
gboolean global_hotkeys; /*!< Defines whether global hotkeys are currently enabled */
gboolean decorated; /*!< Defines whether LibreSplit is currently showing window decorations */
gboolean win_on_top; /*!< Defines whether LibreSplit is currently "always-on-top" */
} LSOpts;