mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-24 02:27:37 +00:00
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
import MakiObject from "./MakiObject";
|
|
|
|
class JsGammaSet extends MakiObject {
|
|
/**
|
|
* getclassname()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassaname() {
|
|
return "GammaSet";
|
|
}
|
|
}
|
|
|
|
export default JsGammaSet;
|