Poodletooth-iLand/toontown/speedchat/TTSCCogMenu.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

13 lines
360 B
Python
Executable file

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)