123456789101112 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SGraphCommand = void 0;
- const lib_1 = require("@persagy-web/base/lib");
- class SGraphCommand extends lib_1.SUndoCommand {
- constructor(scene) {
- super();
- this.scene = null;
- this.scene = scene;
- }
- }
- exports.SGraphCommand = SGraphCommand;
|