Captainup  2.4
/Users/yogs/Desktop/CaptainUp/Headers/CPTCurrency.h
1 //
2 // CPTCurrency.h
3 // CaptainUp
4 //
5 // Created by Yogesh Prajapati on 3/9/17.
6 // Copyright © 2017 Captain Up. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 #ifndef CPTCurrency_h
12 #define CPTCurrency_h
13 
14 #import "CPTObject.h"
15 
20 
24 @property (nonatomic, readonly, nonnull) NSString* name;
25 
29 @property (nonatomic, readonly) NSInteger amount;
30 
34 @property (nonatomic, readonly) NSInteger amountReceived;
35 
39 @property (nonatomic, readonly) NSUInteger multiplier;
40 
44 @property (nonatomic, readonly) NSUInteger playerTotal;
45 
46 
47 @end
48 
49 
50 #endif /* CPTCurrency_h */
NSInteger amount
Definition: CPTCurrency.h:29
NSString * name
Definition: CPTCurrency.h:24
NSUInteger playerTotal
Definition: CPTCurrency.h:44
NSInteger amountReceived
Definition: CPTCurrency.h:34
Definition: CPTObject.h:17
Definition: CPTCurrency.h:19
NSUInteger multiplier
Definition: CPTCurrency.h:39