///////////////////////////////
| 518 | |
| 519 | //////////////////////////////////// |
| 520 | static bool CheckTableBoolean(lua_State* L, int index, const char* name, bool default_value) |
| 521 | { |
| 522 | return CheckTableValue<bool>(L, index, name, default_value); |
| 523 | } |
| 524 | static int CheckTableInteger(lua_State* L, int index, const char* name) |
| 525 | { |
| 526 | return CheckTableValue<int>(L, index, name); |