main.ts 653 B

123456789101112131415161718192021222324
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. /// <reference path="../TypeScript/Atomic.d.ts" />
  8. /// <reference path="../TypeScript/ToolCore.d.ts" />
  9. /// <reference path="../TypeScript/Editor.d.ts" />
  10. /// <reference path="../TypeScript/AtomicWork.d.ts" />
  11. import Editor = require("editor/Editor");
  12. class Main {
  13. static Editor:Editor;
  14. static main() {
  15. Main.Editor = new Editor();
  16. }
  17. }
  18. Main.main();