aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/context.h
blob: b6097780a64e270eec2adf49c64e2084034f78a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

enum class ScriptContext : int
{
	SERVER,
	CLIENT,
	UI,
	NONE
};

const char* GetContextName(ScriptContext context);