mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-08 04:06:17 +00:00
15 lines
270 B
C++
15 lines
270 B
C++
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include "applicationstate.h"
|
||
|
|
||
|
static ApplicationState appState = (ApplicationState)-1; // Set to an invalid value
|
||
|
|
||
|
ApplicationState getAppState()
|
||
|
{
|
||
|
return appState;
|
||
|
}
|
||
|
|
||
|
void setAppState(ApplicationState state)
|
||
|
{
|
||
|
appState = state;
|
||
|
}
|