GUILabel.cs 567 B

123456789101112131415
  1. using System.Runtime.CompilerServices;
  2. namespace BansheeEngine
  3. {
  4. public sealed class GUILabel : ScriptObject
  5. {
  6. internal GUILabel(GUILayout parentLayout, string name, GUIElementStyle style, params GUIOption[] options)
  7. {
  8. Internal_CreateInstance(this, parentLayout, name, style, options);
  9. }
  10. [MethodImpl(MethodImplOptions.InternalCall)]
  11. private static extern void Internal_CreateInstance(GUILabel instance, GUILayout layout, string name, GUIElementStyle style, GUIOption[] options);
  12. }
  13. }