mirror of
https://github.com/abakh/nbsdgames
synced 2025-05-25 17:09:33 -04:00
6 lines
112 B
Python
6 lines
112 B
Python
|
class Sound:
|
||
|
has_sound = 0 # no sound
|
||
|
has_music = 0 # no music
|
||
|
def __init__(self):
|
||
|
pass
|