diff options
Diffstat (limited to 'NorthstarDLL/context.h')
-rw-r--r-- | NorthstarDLL/context.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/NorthstarDLL/context.h b/NorthstarDLL/context.h new file mode 100644 index 00000000..b6097780 --- /dev/null +++ b/NorthstarDLL/context.h @@ -0,0 +1,11 @@ +#pragma once + +enum class ScriptContext : int +{ + SERVER, + CLIENT, + UI, + NONE +}; + +const char* GetContextName(ScriptContext context);
\ No newline at end of file |