NSPanel.odin 142 B

123456789
  1. package objc_Foundation
  2. ModalResponse :: enum UInteger {
  3. Cancel = 0,
  4. OK = 1,
  5. }
  6. @(objc_class="NSPanel")
  7. Panel :: struct{ using _: Window }