| 26 | } |
| 27 | |
| 28 | void pushToLua(lua_State *L, sp<TacticalAI> &v [[maybe_unused]]) |
| 29 | { |
| 30 | lua_pushnil(L); |
| 31 | LogError("Unimplemented Lua function"); |
| 32 | } |
| 33 | void pushToLua(lua_State *L, UnitAI &v) { pushToLua(L, v.type); } |
| 34 | void pushToLua(lua_State *L, const sp<TacticalAI> &v [[maybe_unused]]) |
| 35 | { |
no outgoing calls
no test coverage detected