mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-01 00:53:18 +00:00
7 lines
137 B
Python
7 lines
137 B
Python
class State:
|
|
def __init__(self, regex, run, iffail):
|
|
self.regex = regex
|
|
self.run = run
|
|
self.iffail = iffail
|
|
|