mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 01:05:58 +03:00
16 lines
310 B
Objective-C
16 lines
310 B
Objective-C
/*
|
|
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Several AK types conflict with MacOS types.
|
|
#define FixedPoint FixedPointMacOS
|
|
#import <Cocoa/Cocoa.h>
|
|
#undef FixedPoint
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
@end
|