aboutsummaryrefslogtreecommitdiff
path: root/gamemode/client/cl_state.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-02-18 21:55:55 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-02-18 21:55:55 -0500
commita22cbeddc5f8fb61e87a30aa14ba354de5cf4431 (patch)
tree297c1dbfb23185c5246e1dd7bdec52253a24ba60 /gamemode/client/cl_state.lua
parentf4ee62bb0725a3ae94477b2818071f506e4dfd9f (diff)
downloadartery-a22cbeddc5f8fb61e87a30aa14ba354de5cf4431.tar.gz
artery-a22cbeddc5f8fb61e87a30aa14ba354de5cf4431.tar.bz2
artery-a22cbeddc5f8fb61e87a30aa14ba354de5cf4431.zip
Updates
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