mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 10:07:35 +00:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
import GuiObject from "./GuiObject";
|
|
|
|
class Component extends GuiObject {
|
|
/**
|
|
* getClassName()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "Component";
|
|
}
|
|
}
|
|
|
|
export default Component;
|