mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-29 15:15:08 +00:00
10 lines
142 B
Odin
10 lines
142 B
Odin
package objc_Foundation
|
|
|
|
ModalResponse :: enum UInteger {
|
|
Cancel = 0,
|
|
OK = 1,
|
|
}
|
|
|
|
@(objc_class="NSPanel")
|
|
Panel :: struct{ using _: Window }
|