GUILayoutX.cs 284 B

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