EditorGUI.cs 483 B

1234567891011121314151617
  1. using System.Runtime.CompilerServices;
  2. using BansheeEngine;
  3. namespace BansheeEditor
  4. {
  5. public sealed class EditorGUI : GUIBase
  6. {
  7. internal EditorGUI(EditorWindow parentWindow)
  8. {
  9. Internal_CreateInstance(this, parentWindow);
  10. Initialize();
  11. }
  12. [MethodImpl(MethodImplOptions.InternalCall)]
  13. private static extern void Internal_CreateInstance(EditorGUI instance, EditorWindow parentWindow);
  14. }
  15. }