mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-27 22:30:30 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
13 lines
484 B
C
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;
|