mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-25 02:57:30 +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;
|