Create SoundFile.py
Browse filesSoundfile to create ability to start music as a final answer
- SoundFile.py +6 -0
SoundFile.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class SoundFile:
|
| 2 |
+
def __init__(self, filepath):
|
| 3 |
+
self.filepath = filepath
|
| 4 |
+
|
| 5 |
+
def get_filepath(self):
|
| 6 |
+
return self.filepath
|