// // Created by Dan Walmsley on 06/05/2022. // Copyright (c) 2022 Avalonia. All rights reserved. // #import #import #include "WindowProtocol.h" #include "WindowBaseImpl.h" @interface AvnWindow : NSWindow -(AvnWindow* _Nonnull) initWithParent: (WindowBaseImpl* _Nonnull) parent contentRect: (NSRect)contentRect styleMask: (NSWindowStyleMask)styleMask; @end @interface AvnPanel : NSPanel -(AvnPanel* _Nonnull) initWithParent: (WindowBaseImpl* _Nonnull) parent contentRect: (NSRect)contentRect styleMask: (NSWindowStyleMask)styleMask; @end