2
0

GUIPanel.cs 612 B

123456789101112131415161718192021
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. namespace BansheeEngine
  4. {
  5. public sealed class GUIPanel : GUILayout
  6. {
  7. private GUIPanel()
  8. { }
  9. public GUIPanel(Int16 depth = 0, ushort depthRangeMin = ushort.MaxValue, ushort depthRangeMax = ushort.MaxValue, params GUIOption[] options)
  10. {
  11. Internal_CreateInstancePanel(this, depth, depthRangeMin, depthRangeMax, options);
  12. }
  13. public GUIPanel(params GUIOption[] options)
  14. {
  15. Internal_CreateInstancePanel(this, 0, ushort.MaxValue, ushort.MaxValue, options);
  16. }
  17. }
  18. }