Files
Odin/vendor/darwin/Foundation/NSPanel.odin
T
2024-01-17 16:06:59 +00:00

10 lines
142 B
Odin

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