2021-04-25 23:17:14 +02:00
|
|
|
from UserActType import UserActType
|
2021-04-26 15:13:52 +02:00
|
|
|
from ActFrame import ActFrame
|
2021-04-25 23:17:14 +02:00
|
|
|
|
2021-04-26 15:13:52 +02:00
|
|
|
class UserAct(ActFrame):
|
2021-04-25 23:17:14 +02:00
|
|
|
def __init__(self, actType, actParams = None):
|
2021-04-26 15:13:52 +02:00
|
|
|
if actType != None and type(actType) is not UserActType:
|
|
|
|
raise Exception('actParams has wrong type: expected type {}, got {}'.format(type(UserActType.WELCOME_MSG), type(actType)))
|
2021-04-25 23:17:14 +02:00
|
|
|
|
2021-04-26 15:13:52 +02:00
|
|
|
super(UserAct, self).__init__(actType, actParams)
|