diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-02-18 21:55:55 -0500 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-02-18 21:55:55 -0500 |
| commit | a22cbeddc5f8fb61e87a30aa14ba354de5cf4431 (patch) | |
| tree | 297c1dbfb23185c5246e1dd7bdec52253a24ba60 /gamemode/client/cl_state.lua | |
| parent | f4ee62bb0725a3ae94477b2818071f506e4dfd9f (diff) | |
| download | artery-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.lua | 9 |
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 |
