igGetContentRegionAvail() private method

private igGetContentRegionAvail ( Vector2 &@out ) : void
@out Vector2
return void
Exemplo n.º 1
0
        public static Vector2 GetContentRegionAvailable()
        {
            Vector2 value;

            ImGuiNative.igGetContentRegionAvail(out value);
            return(value);
        }
Exemplo n.º 2
0
 public static Vector2 GetContentRegionAvailable()
 {
     System.Numerics.Vector2 value;
     ImGuiNative.igGetContentRegionAvail(out value);
     return(new Vector2(value.X, value.Y));
 }