summaryrefslogtreecommitdiff
path: root/src/LuaApi.h
diff options
context:
space:
mode:
authorSteph Enders <smenders@gmail.com>2022-06-24 12:49:00 -0400
committerSteph Enders <smenders@gmail.com>2022-06-24 17:37:11 -0400
commit20076f7271e19ecc259014681ba733047bea4d9b (patch)
treee07dc114f224b0f689cdb618e7865420e9a03b2f /src/LuaApi.h
parent2f2ed4c294fbce00b959032f2dcd80dd7981dd9b (diff)
Remove unnecessary typedef
Idk why I thought that was necessary to avoid: "struct Name" in every place? maybe its a C thing? IDR
Diffstat (limited to 'src/LuaApi.h')
-rw-r--r--src/LuaApi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LuaApi.h b/src/LuaApi.h
index 43bd50f..9da5c0a 100644
--- a/src/LuaApi.h
+++ b/src/LuaApi.h
@@ -36,7 +36,7 @@ struct LState {
lua_State *onintro;
lua_State *onwin;
lua_State *onloss;
-} typedef LState;
+};
const char *ON_KEYPRESS = "onKeyPress";
const char *ON_UPDATE = "onUpdate";