TestLyric/fakeplayer.py

17 lines
252 B
Python
Raw Permalink Normal View History

2024-11-17 11:17:14 +08:00
class FakePlayer:
def __init__(self):
self.curr_pos = 0.0
def seek(self, pos):
self.curr_pos = float(pos)
def add(self, num):
self.curr_pos += num
def play(self):
...
def stop(self):
...