comparison src/paranormal/containers.c @ 172:5ed59f83526f trunk

[svn] - fix typoes
author nenolod
date Tue, 31 Oct 2006 23:24:22 -0800
parents 9e51ffaca177
children 0d826917c56f
comparison
equal deleted inserted replaced
171:9e51ffaca177 172:5ed59f83526f
127 } 127 }
128 128
129 struct pn_actuator_desc builtin_container_once = 129 struct pn_actuator_desc builtin_container_once =
130 { 130 {
131 "container_once", 131 "container_once",
132 "Initalization Container", 132 "Initialization Container",
133 "A container whose contents get executed exactly once.\n\n" 133 "A container whose contents get executed exactly once.\n\n"
134 "This is often used to set initial graphics states such as the\n" 134 "This is often used to set initial graphics states such as the\n"
135 "pixel depth, or to display some text (such as credits)", 135 "pixel depth, or to display some text (such as credits)",
136 ACTUATOR_FLAG_CONTAINER, NULL, 136 ACTUATOR_FLAG_CONTAINER, NULL,
137 PN_ACTUATOR_INIT_FUNC (container_once_init), 137 PN_ACTUATOR_INIT_FUNC (container_once_init),
241 241
242 struct pn_actuator_desc builtin_container_onbeat = 242 struct pn_actuator_desc builtin_container_onbeat =
243 { 243 {
244 "container_onbeat", 244 "container_onbeat",
245 "OnBeat Container", 245 "OnBeat Container",
246 "A simple container which only triggers on a beat." 246 "A simple container which only triggers on a beat.",
247 ACTUATOR_FLAG_CONTAINER, NULL, 247 ACTUATOR_FLAG_CONTAINER, NULL,
248 PN_ACTUATOR_INIT_FUNC (container_onbeat_init), 248 PN_ACTUATOR_INIT_FUNC (container_onbeat_init),
249 PN_ACTUATOR_CLEANUP_FUNC (container_onbeat_cleanup), 249 PN_ACTUATOR_CLEANUP_FUNC (container_onbeat_cleanup),
250 PN_ACTUATOR_EXEC_FUNC (container_onbeat_exec) 250 PN_ACTUATOR_EXEC_FUNC (container_onbeat_exec)
251 }; 251 };