mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-25 02:57:30 +00:00
24 lines
452 B
JavaScript
24 lines
452 B
JavaScript
import MakiObject from "./MakiObject";
|
|
import { unimplementedWarning } from "../utils";
|
|
|
|
class Region extends MakiObject {
|
|
/**
|
|
* getclassname()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "Region";
|
|
}
|
|
|
|
loadfrommap(regionmap, threshold, reversed) {
|
|
unimplementedWarning("loadFromMap");
|
|
}
|
|
|
|
offset(x, y) {
|
|
unimplementedWarning("offset");
|
|
}
|
|
}
|
|
|
|
export default Region;
|