SelectionSectionUI.ts 579 B

1234567891011121314151617181920212223242526
  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. import SerializableEditType = require("./SerializableEditType");
  8. class SelectionSectionUI extends Atomic.UILayout {
  9. editType: SerializableEditType;
  10. refresh() {
  11. }
  12. createUI(editType: SerializableEditType) {
  13. this.editType = editType;
  14. }
  15. }
  16. export = SelectionSectionUI;