Ejemplo n.º 1
0
        public void PropertyButtonClicked(ObsProperty property, libobs.obs_property_clicked_t clicked)
        {
            if (clicked == null)
            {
                return;
            }

            if (property.ButtonClicked(clicked, properties, context.GetPointer()))
            {
                RefreshProperties(property);
            }
        }
Ejemplo n.º 2
0
 public unsafe bool ButtonClicked(libobs.obs_property_clicked_t clicked, ObsProperties properties, IntPtr obj)
 {
     return(clicked(properties.GetPointer(), instance, obj));
 }