OSDN Git Service

CPU射程操作バグ改善
[awarsiii/AwarsIV.git] / Awars III / MapChipList.h
1 //
2 //  MapChipList.h
3 //  Awars III
4 //
5 //  Created by Killery on 2012/12/15.
6 //  Copyright (c) 2012年 Killery. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import "MapEditor.h"
11
12 typedef struct _MAPCHIP{
13
14     NSString *name;
15     int dmgfix;
16     int riku;
17     int umi;
18     int chu;
19     int sora;
20     int type;
21     
22     NSString *iName;
23     NSImage *img;
24
25
26 }MAPCHIP;
27
28 MAPCHIP MC[1024];
29
30 @interface MapChipList : NSObject <NSTableViewDelegate>
31 {
32     NSTimer *MCLtime;
33     IBOutlet NSPanel* MCLPanel;
34     IBOutlet NSPanel* MCLDetailPanel;
35     IBOutlet NSPanel* MCLregistPanel;
36     NSPoint MCLDpoint;
37     
38     IBOutlet NSTextField* TFchipNumb;
39     
40     NSMutableArray *mapChipListMA;
41     IBOutlet NSArrayController *mapChipListAC;
42     IBOutlet NSTableView *mapChipListTV;
43     
44     NSArray *fileDataArray;
45     NSInteger chipNumb;
46     
47     IBOutlet NSTextField *TFname;
48     IBOutlet NSTextField *TFfix;
49     IBOutlet NSTextField *TFriku;
50     IBOutlet NSTextField *TFumi;
51     IBOutlet NSTextField *TFchu;
52     IBOutlet NSTextField *TFsora;
53     IBOutlet NSPopUpButton *TFtype;
54     IBOutlet NSImageView *IVimg;
55     
56 }
57 -(IBAction)submitMCL:(id)sender;
58 - (NSMutableArray*)mapChipListMA;
59
60 -(IBAction)saveMCL:(id)sender;
61 -(IBAction)cancelMCL:(id)sender;
62
63 -(IBAction)registMCL:(id)sender;
64 -(IBAction)registSaveMCL:(id)sender;
65 -(IBAction)registCancelMCL:(id)sender;
66
67 @end