| 123456789101112131415161718 |
- using System;
- using System.Runtime.CompilerServices;
- namespace BansheeEngine
- {
- public sealed class GUILayoutY : GUILayout
- {
- internal GUILayoutY(GUIScrollArea parentArea)
- {
- Internal_CreateInstanceYFromScrollArea(this, parentArea);
- }
- public GUILayoutY(params GUIOption[] options)
- {
- Internal_CreateInstanceY(this, options);
- }
- }
- }
|