>>22
Remember that OO is just syntactic sugar for structs with methods. Just look at the gtk api. You may write gtk_widget_show(GTK_WIDGET(my_widget)) as my_widget.show(). Does the same fuqin shit, but with better syntax and associating the method to the type.