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