mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 17:18:52 +00:00
28 lines
465 B
JavaScript
28 lines
465 B
JavaScript
import MakiObject from "./MakiObject";
|
|
import { unimplementedWarning } from "../utils";
|
|
|
|
class Timer extends MakiObject {
|
|
/**
|
|
* getclassname()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "Timer";
|
|
}
|
|
|
|
setdelay(millisec) {
|
|
unimplementedWarning("setDelay");
|
|
}
|
|
|
|
start() {
|
|
unimplementedWarning("start");
|
|
}
|
|
|
|
stop() {
|
|
unimplementedWarning("stop");
|
|
}
|
|
}
|
|
|
|
export default Timer;
|