aboutsummaryrefslogtreecommitdiff
path: root/src/cull_list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cull_list.cpp')
-rw-r--r--src/cull_list.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp
index f87095126..6033ec695 100644
--- a/src/cull_list.cpp
+++ b/src/cull_list.cpp
@@ -48,3 +48,11 @@ void CullList::Apply()
}
}
+void ActionList::Run()
+{
+ for(unsigned int i=0; i < list.size(); i++)
+ {
+ list[i]->Call();
+ }
+ list.clear();
+}