Ejemplo n.º 1
0
	def clear_all_objects(self):
		for go in GameObjectKeeper.runables():
			GameObjectKeeper.remove(go)
Ejemplo n.º 2
0
	def remove_terminated(self):
		for go in GameObjectKeeper.runables():
			if (go.removeme()):
				GameObjectKeeper.remove(go)
				break