| 1234567891011121314151617181920212223 |
- using System.Runtime.CompilerServices;
- namespace BansheeEngine
- {
- public sealed class GUIScrollArea : GUIElement
- {
- private GUILayout _mainLayout;
- public GUILayout layout
- {
- get { return _mainLayout; }
- }
- internal GUIScrollArea(GUILayout parentLayout, GUIElementStyle style, params GUIOption[] options)
- {
- Internal_CreateInstance(this, parentLayout, style, options);
- _mainLayout = new GUILayoutY(this);
- }
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_CreateInstance(GUIScrollArea instance, GUILayout parentLayout, GUIElementStyle style, params GUIOption[] options);
- }
- }
|