blob: 2855e4104b74b5dff79a54366e15e52e593a08ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// PcsxrPluginHandler.h
// Pcsxr
//
// Created by Charles Betts on 12/10/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PcsxrFileHandle.h"
@interface PcsxrPluginHandler : NSWindowController <PcsxrFileHandle>
@property (weak) IBOutlet NSTextField *pluginName;
- (IBAction)closeAddPluginSheet:(id)sender;
@end
|