Files
Odin/vendor/darwin/Foundation/NSPanel.odin
T
2023-10-29 15:03:48 +11:00

11 lines
158 B
Odin

//+build darwin
package objc_Foundation
ModalResponse :: enum UInteger {
Cancel = 0,
OK = 1,
}
@(objc_class="NSPanel")
Panel :: struct{ using _: Window }