Spaces:
Runtime error
Runtime error
File size: 678 Bytes
bb7af57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from playsound import playsound
class ResponseManager:
def activate_heated_seats():
playsound("assets\command_responses\heated_activated.wav")
def deactivate_heated_seats():
playsound("assets\command_responses\heated_deactivated.wav")
def activate_cooled_seats():
playsound("assets\command_responses\cooled_activated.wav")
def deactivate_cooled_seats():
playsound("assets\command_responses\cooled_deactivated.wav")
def activate_massage_seats():
playsound("assets\command_responses\massage_activated.wav")
def deactivate_massage_seats():
playsound("assets\command_responses\massage_deactivated.wav")
|