| 280 | } |
| 281 | |
| 282 | void PrintHelp() |
| 283 | { |
| 284 | lua_init(); |
| 285 | |
| 286 | FOR_HASH (g_help_list->map) |
| 287 | { |
| 288 | printf("Lua function: %s\n", g_help_list->map.Key().C_Str()); |
| 289 | auto f = g_help_list->map.Value(); |
| 290 | f(); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | class ScriptVar::ScriptVarPrivate: public Core::RefCounter<Core::DummyMutex> |
| 295 | { |