GUILayoutY.cs 434 B

123456789101112131415161718
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. namespace BansheeEngine
  4. {
  5. public sealed class GUILayoutY : GUILayout
  6. {
  7. internal GUILayoutY(GUIScrollArea parentArea)
  8. {
  9. Internal_CreateInstanceYFromScrollArea(this, parentArea);
  10. }
  11. public GUILayoutY(params GUIOption[] options)
  12. {
  13. Internal_CreateInstanceY(this, options);
  14. }
  15. }
  16. }