2022-12-16 00:24:27 -08:00
|
|
|
//
|
|
|
|
// AppDelegate.h
|
|
|
|
// cunnyfinder
|
|
|
|
//
|
|
|
|
// Created by Femployee on 12/16/22.
|
|
|
|
// Copyright (c) 2022 FemboyFinancial. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2022-12-21 02:14:45 -08:00
|
|
|
@interface AppDelegate : NSObject<NSApplicationDelegate>
|
2022-12-16 00:24:27 -08:00
|
|
|
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
|
2022-12-16 01:38:29 -08:00
|
|
|
-(IBAction)actionUohhh:(id)sender;
|
2022-12-21 02:14:45 -08:00
|
|
|
-(NSRect)randomPositionWithWidth:(int)width height:(int)height;
|
|
|
|
-(void)addWaifu:(id)btn;
|
2022-12-16 01:38:29 -08:00
|
|
|
|
2022-12-16 00:24:27 -08:00
|
|
|
@end
|