main.ts 373 B

1234567891011121314151617
  1. /// <reference path="../TypeScript/Atomic.d.ts" />
  2. /// <reference path="../TypeScript/ToolCore.d.ts" />
  3. /// <reference path="../TypeScript/Editor.d.ts" />
  4. /// <reference path="../TypeScript/AtomicWork.d.ts" />
  5. import Editor = require("editor/Editor");
  6. class Main {
  7. static Editor:Editor;
  8. static main() {
  9. Main.Editor = new Editor();
  10. }
  11. }
  12. Main.main();