@@ -511,6 +511,16 @@ public static bool BeginWindow(string windowTitle, ref bool opened, float backgr
511
511
return ImGuiNative . igBegin2 ( windowTitle , ref opened , new Vector2 ( ) , backgroundAlpha , flags ) ;
512
512
}
513
513
514
+ public static bool BeginWindow ( string windowTitle , ref bool opened , Vector2 startingSize , WindowFlags flags )
515
+ {
516
+ return ImGuiNative . igBegin2 ( windowTitle , ref opened , startingSize , 1f , flags ) ;
517
+ }
518
+
519
+ public static bool BeginWindow ( string windowTitle , ref bool opened , Vector2 startingSize , float backgroundAlpha , WindowFlags flags )
520
+ {
521
+ return ImGuiNative . igBegin2 ( windowTitle , ref opened , startingSize , backgroundAlpha , flags ) ;
522
+ }
523
+
514
524
public static bool BeginMenu ( string label )
515
525
{
516
526
return ImGuiNative . igBeginMenu ( label , true ) ;
@@ -531,11 +541,6 @@ public static void CloseCurrentPopup()
531
541
ImGuiNative . igCloseCurrentPopup ( ) ;
532
542
}
533
543
534
- public static bool BeginWindow ( string windowTitle , ref bool opened , Vector2 startingSize , WindowFlags flags )
535
- {
536
- return ImGuiNative . igBegin2 ( windowTitle , ref opened , startingSize , 1f , flags ) ;
537
- }
538
-
539
544
public static void EndMenuBar ( )
540
545
{
541
546
ImGuiNative . igEndMenuBar ( ) ;
@@ -546,11 +551,6 @@ public static void EndMenu()
546
551
ImGuiNative . igEndMenu ( ) ;
547
552
}
548
553
549
- public static bool BeginWindow ( string windowTitle , ref bool opened , Vector2 startingSize , float backgroundAlpha , WindowFlags flags )
550
- {
551
- return ImGuiNative . igBegin2 ( windowTitle , ref opened , startingSize , backgroundAlpha , flags ) ;
552
- }
553
-
554
554
public static void Separator ( )
555
555
{
556
556
ImGuiNative . igSeparator ( ) ;
0 commit comments