def printWorldState(self): if repeatedState(self.story.edge): styler.printHeader("Current World State - REPEATED") else: styler.printHeader("Current World State") for e in self.story.edge: print styler.printState(e)
def printWorld(self): for edge in self.story.actions: print styler.printState(edge)