GUIPanelNEW.cs 277 B

12345678910111213
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. namespace BansheeEngine
  4. {
  5. public sealed class GUIPanelNEW : GUILayout
  6. {
  7. public GUIPanelNEW(params GUIOption[] options)
  8. {
  9. Internal_CreateInstancePanel(this, options);
  10. }
  11. }
  12. }