main.ts 707 B

12345678910111213141516171819202122232425
  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/AtomicNET.d.ts" />
  9. /// <reference path="../TypeScript/ToolCore.d.ts" />
  10. /// <reference path="../TypeScript/Editor.d.ts" />
  11. /// <reference path="../TypeScript/AtomicWork.d.ts" />
  12. import Editor = require("editor/Editor");
  13. class Main {
  14. static Editor:Editor;
  15. static main() {
  16. Main.Editor = new Editor();
  17. }
  18. }
  19. Main.main();