19 lines
421 B
Python
19 lines
421 B
Python
from UserActType import UserActType
|
|
from UserAct import UserAct
|
|
|
|
|
|
class DP:
|
|
"""
|
|
Moduł, który tworzy reprezentację tekstową aktu systemowego wybranego przez taktykę dialogu.
|
|
Wejście: Akt systemu (rama)
|
|
Wyjście: Tekst
|
|
"""
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def chooseTactic(self, frameList=None):
|
|
if frameList is not None:
|
|
systemAct = [0]
|
|
return systemAct
|