Spaces:
Runtime error
Runtime error
File size: 775 Bytes
1e47c6d 4f8f8b7 1e47c6d 4f8f8b7 1e47c6d 4f8f8b7 1e47c6d 4f8f8b7 1e47c6d 4f8f8b7 1e47c6d 4f8f8b7 1e47c6d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import os
class ResponseManager:
def activate_heated_seats(self):
return os.path.join("assets", "command_responses", "heated_activated.wav")
def deactivate_heated_seats(self):
return os.path.join("assets", "command_responses", "heated_deactivated.wav")
def activate_cooled_seats(self):
return os.path.join("assets", "command_responses", "cooled_activated.wav")
def deactivate_cooled_seats(self):
return os.path.join("assets", "command_responses", "ooled_deactivated.wav")
def activate_massage_seats(self):
return os.path.join("assets", "command_responses", "massage_activated.wav")
def deactivate_massage_seats(self):
return os.path.join("assets", "command_responses", "massage_deactivated.wav")
|