Poodletooth-iLand/toontown/speedchat/TTSCCogMenu.py

14 lines
360 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from otp.speedchat.SCMenu import SCMenu
from otp.speedchat.SCStaticTextTerminal import SCStaticTextTerminal
class TTSCCogMenu(SCMenu):
def __init__(self, indices):
SCMenu.__init__(self)
for index in indices:
term = SCStaticTextTerminal(index)
self.append(term)
def destroy(self):
SCMenu.destroy(self)