forked from deadjim/darknova-iphone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSellEquipmentViewController.h
executable file
·75 lines (60 loc) · 2.12 KB
/
SellEquipmentViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
Dark Nova © Copyright 2009 Dead Jim Studios
This file is part of Dark Nova.
Dark Nova is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Dark Nova is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Dark Nova. If not, see <http://www.gnu.org/licenses/>
*/
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface SellEquipmentViewController : UIViewController {
IBOutlet UILabel * weaponName0;
IBOutlet UILabel * weaponName1;
IBOutlet UILabel * weaponName2;
IBOutlet UILabel * weaponPrice0;
IBOutlet UILabel * weaponPrice1;
IBOutlet UILabel * weaponPrice2;
IBOutlet UIButton * weaponSell0;
IBOutlet UIButton * weaponSell1;
IBOutlet UIButton * weaponSell2;
IBOutlet UILabel * shieldName0;
IBOutlet UILabel * shieldName1;
IBOutlet UILabel * shieldName2;
IBOutlet UILabel * shieldPrice0;
IBOutlet UILabel * shieldPrice1;
IBOutlet UILabel * shieldPrice2;
IBOutlet UIButton * shieldSell0;
IBOutlet UIButton * shieldSell1;
IBOutlet UIButton * shieldSell2;
IBOutlet UILabel * gadgetName0;
IBOutlet UILabel * gadgetName1;
IBOutlet UILabel * gadgetName2;
IBOutlet UILabel * gadgetPrice0;
IBOutlet UILabel * gadgetPrice1;
IBOutlet UILabel * gadgetPrice2;
IBOutlet UIButton * gadgetSell0;
IBOutlet UIButton * gadgetSell1;
IBOutlet UIButton * gadgetSell2;
IBOutlet UILabel * noWeapons;
IBOutlet UILabel * noShield;
IBOutlet UILabel * noGadgets;
IBOutlet UILabel * cash;
int numSellItem;
}
-(IBAction) sellWeapon0;
-(IBAction) sellWeapon1;
-(IBAction) sellWeapon2;
-(IBAction) sellShield0;
-(IBAction) sellShield1;
-(IBAction) sellShield2;
-(IBAction) sellGadget0;
-(IBAction) sellGadget1;
-(IBAction) sellGadget2;
@end