| 54 | } |
| 55 | |
| 56 | void CallFunctions(xr_vector<luabind::functor<void>>& v) |
| 57 | { |
| 58 | xr_vector<luabind::functor<void>>::iterator it = v.begin(); |
| 59 | for (; it != v.end(); ++it) |
| 60 | { |
| 61 | if ((*it).is_valid()) |
| 62 | (*it)(); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | void CUISequenceItem::Start() { CallFunctions(m_start_lua_functions); } |
| 67 |