SGraphCommand.js 350 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SGraphCommand = void 0;
  4. const lib_1 = require("@persagy-web/base/lib");
  5. class SGraphCommand extends lib_1.SUndoCommand {
  6. constructor(scene) {
  7. super();
  8. this.scene = null;
  9. this.scene = scene;
  10. }
  11. }
  12. exports.SGraphCommand = SGraphCommand;