sunrize
Version:
Sunrize — A Multi-Platform X3D Editor
19 lines (13 loc) • 349 B
JavaScript
;
const
Interface = require ("../Application/Interface");
module .exports = class NodeInspector extends Interface
{
constructor (element)
{
super (`Sunrize.NodeInspector.${element .attr ("id")}.`);
this .nodeInspector = element;
this .nodeInspector .text ("Node Inspector");
this .setup ();
}
};