mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 01:57:29 +00:00
33 lines
658 B
JavaScript
33 lines
658 B
JavaScript
const Group = require("./Group");
|
|
const MakiObject = require("./MakiObject");
|
|
|
|
class System extends MakiObject {
|
|
/**
|
|
* getClassName()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
static getClassName() {
|
|
return "System";
|
|
}
|
|
|
|
async js_start() {
|
|
await this.js_trigger("onScriptLoaded");
|
|
}
|
|
|
|
getScriptGroup() {
|
|
return new Group();
|
|
}
|
|
getToken(str, separator, tokennum) {
|
|
return "Some Token String";
|
|
}
|
|
getParam() {
|
|
return "Some String";
|
|
}
|
|
messageBox(message, msgtitle, flag, notanymoreId) {
|
|
console.log({ message, msgtitle, flag, notanymoreId });
|
|
}
|
|
}
|
|
|
|
module.exports = System;
|