MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / Meta_Eq

Method Meta_Eq

LuaSTGPlus/LuaWrapper.cpp:105–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103 return 4;
104 }
105 static int Meta_Eq(lua_State* L)LNOEXCEPT
106 {
107 fcyColor* pA = static_cast<fcyColor*>(luaL_checkudata(L, 1, TYPENAME_COLOR));
108 fcyColor* pB = static_cast<fcyColor*>(luaL_checkudata(L, 2, TYPENAME_COLOR));
109 lua_pushboolean(L, pA->argb == pB->argb);
110 return 1;
111 }
112 static int Meta_Add(lua_State* L)LNOEXCEPT
113 {
114 fcyColor* pA = static_cast<fcyColor*>(luaL_checkudata(L, 1, TYPENAME_COLOR));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected