GUISceneTreeView.cs 643 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using BansheeEngine;
  4. namespace BansheeEditor
  5. {
  6. public sealed class GUISceneTreeView : GUIElement
  7. {
  8. public GUISceneTreeView(string style = "", params GUIOption[] options)
  9. {
  10. Internal_CreateInstance(this, style, options);
  11. }
  12. public GUISceneTreeView(params GUIOption[] options)
  13. {
  14. Internal_CreateInstance(this, "", options);
  15. }
  16. [MethodImpl(MethodImplOptions.InternalCall)]
  17. private static extern void Internal_CreateInstance(GUISceneTreeView instance, string style, GUIOption[] options);
  18. }
  19. }