aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/context.h
blob: d872f738502096206b745431eac98d5641ca2452 (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);