summaryrefslogtreecommitdiffstats
path: root/core/applicationstate.cpp
blob: a5adde8cf807c78bf74e8e3be194543a688fe239 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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;
}