mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-25 05:36:02 +00:00
6 lines
136 B
Python
6 lines
136 B
Python
class State:
|
|
def __init__(self, regex, run, iffail):
|
|
self.regex = regex
|
|
self.run = run
|
|
self.iffail = iffail
|