IrrlichtNETCP.GUIEnvironment.AddWindowW C# (CSharp) Method

AddWindowW() public method

public AddWindowW ( IrrlichtNETCP.Rect rectangle, bool modal, string text, GUIElement parent, int id ) : GUIWindow
rectangle IrrlichtNETCP.Rect
modal bool
text string
parent GUIElement
id int
return GUIWindow
        public GUIWindow AddWindowW(Rect rectangle, bool modal, string text, GUIElement parent, int id)
        {
            IntPtr par = (parent == null ? IntPtr.Zero : parent.Raw);
            return (GUIWindow)NativeElement.GetObject(GuiEnv_AddWindowW(_raw, rectangle.ToUnmanaged(), modal, text, par, id),
                                                      typeof(GUIWindow));
        }