GUIWidget.cs 386 B

12345678910111213141516
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. namespace BansheeEngine
  4. {
  5. public sealed class GUIWidget : ScriptObject
  6. {
  7. public GUIWidget()
  8. {
  9. Internal_CreateInstance(this);
  10. }
  11. [MethodImpl(MethodImplOptions.InternalCall)]
  12. private static extern void Internal_CreateInstance(GUIWidget instance);
  13. }
  14. }