diff options
Diffstat (limited to 'core/sys/darwin/Foundation/NSPanel.odin')
| -rw-r--r-- | core/sys/darwin/Foundation/NSPanel.odin | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/sys/darwin/Foundation/NSPanel.odin b/core/sys/darwin/Foundation/NSPanel.odin new file mode 100644 index 000000000..4bdf08cdb --- /dev/null +++ b/core/sys/darwin/Foundation/NSPanel.odin @@ -0,0 +1,9 @@ +package objc_Foundation + +ModalResponse :: enum UInteger { + Cancel = 0, + OK = 1, +} + +@(objc_class="NSPanel") +Panel :: struct{ using _: Window } |