Exemplo n.º 1
0
 public ULOverlay(ULWindow window, View view, int x = 0, int y = 0)
 {
     Ptr = AppCoreMethods.ulCreateOverlayWithView(window.Ptr, view.Ptr, x, y);
 }
Exemplo n.º 2
0
 public ULOverlay(ULWindow window, uint width, uint height, int x = 0, int y = 0)
 {
     Ptr = AppCoreMethods.ulCreateOverlay(window.Ptr, width, height, x, y);
 }