OSDN Git Service

works far better
[polyphonic/master.git] / Clash / ClashViewController.h
1 //
2 //  ClashViewController.h
3 //  Clash
4 //
5 //  Created by 金谷 一朗 on 11/09/06.
6 //  Copyright (c) 2011 大阪大学. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <QuartzCore/QuartzCore.h>
11
12 @interface ClashViewController: NSObject {
13         IBOutlet NSTextField *addressField;
14         IBOutlet NSView *view;
15         IBOutlet NSButton *goButton;
16         IBOutlet NSButton *autoRunMode;
17         CALayer *backgroundLayer;
18         NSMutableDictionary *layers;
19         NSTimer *timer;
20 }
21
22 - (IBAction)go: (id)sender;
23 - (IBAction)autoRun: (id)sender;
24
25 @end