blob: 8b79a4fb45edeac60484f354cdbceb25b2de68b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// 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> {
IBOutlet NSTextField *pluginName;
BOOL moveOK;
}
- (IBAction)closeAddPluginSheet:(id)sender;
@end
|