mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-30 13:30:02 +00:00
20 lines
297 B
JavaScript
20 lines
297 B
JavaScript
class MakiObject {
|
|
/**
|
|
* getClassName()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
static getClassName() {
|
|
return "Object";
|
|
}
|
|
|
|
/**
|
|
* getId()
|
|
*/
|
|
getId() {
|
|
throw new Error("getId not implemented");
|
|
}
|
|
}
|
|
|
|
module.exports = MakiObject;
|