aboutsummaryrefslogtreecommitdiff
path: root/gamemode/client/cl_state.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/client/cl_state.lua')
-rw-r--r--gamemode/client/cl_state.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/gamemode/client/cl_state.lua b/gamemode/client/cl_state.lua
new file mode 100644
index 0000000..f5677e9
--- /dev/null
+++ b/gamemode/client/cl_state.lua
@@ -0,0 +1,9 @@
+--[[
+ Holds some information about client state, this is in a seperate file so I don't have circular dependancies.
+]]
+
+local state = {}
+
+state.invopen = false
+
+return state