16 lines
374 B
Python
16 lines
374 B
Python
|
#!/bin/python
|
||
|
|
||
|
class outputManager():
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
def presentText(self, environment, Text):
|
||
|
pass
|
||
|
def speakText(self, environment, Text):
|
||
|
pass
|
||
|
def brailleText(self, environment, Text):
|
||
|
pass
|
||
|
def interruptOutput(self, environment, Text):
|
||
|
pass
|
||
|
def playSoundIcon(self, environment, Text):
|
||
|
pass
|