evennia/events.py
2007-04-03 13:42:51 +00:00

15 lines
236 B
Python

"""
Holds the events scheduled in scheduler.py.
"""
schedule = {
'event_example': 60,
}
lastrun = {}
def event_example():
"""
This is where the example event would be placed.
"""
pass