mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
29 lines
554 B
TypeScript
29 lines
554 B
TypeScript
import GuiObject from "./GuiObject";
|
|
import * as Utils from "../utils";
|
|
|
|
export default class Frame extends GuiObject {
|
|
/**
|
|
* getClassName()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "Frame";
|
|
}
|
|
|
|
getposition() {
|
|
Utils.unimplementedWarning("getposition");
|
|
return;
|
|
}
|
|
|
|
setposition(position: number) {
|
|
Utils.unimplementedWarning("setposition");
|
|
return;
|
|
}
|
|
|
|
onsetposition(position: number) {
|
|
Utils.unimplementedWarning("onsetposition");
|
|
return;
|
|
}
|
|
}
|