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