-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDSACharacterViewModel.h
More file actions
60 lines (43 loc) · 2.19 KB
/
DSACharacterViewModel.h
File metadata and controls
60 lines (43 loc) · 2.19 KB
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
/*
Project: DSA-SpielHelfer
Copyright (C) 2024 Free Software Foundation
Author: Sebastian Reitenbach
Created: 2024-09-19 22:03:00 +0200 by sebastia
This application 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 2 of the License, or (at your option) any later version.
This application 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
Library General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#ifndef _DSACHARACTERVIEWMODEL_H_
#define _DSACHARACTERVIEWMODEL_H_
#import <Foundation/Foundation.h>
@class DSACharacterHero;
@class DSAWallet;
@interface DSACharacterViewModel : NSObject
@property (nonatomic, strong) DSACharacterHero *model;
@property (nonatomic, strong) DSAWallet *wallet;
@property (nonatomic, strong) NSDictionary *positiveTraits;
@property (nonatomic, strong) NSDictionary *currentPositiveTraits;
@property (nonatomic, strong) NSDictionary *negativeTraits;
@property (nonatomic, strong) NSDictionary *currentNegativeTraits;
@property (nonatomic, assign) NSInteger lifePoints;
@property (nonatomic, assign) NSInteger currentLifePoints;
@property (nonatomic, assign) NSInteger astralEnergy;
@property (nonatomic, assign) NSInteger currentAstralEnergy;
@property (nonatomic, assign) NSInteger karmaPoints;
@property (nonatomic, assign) NSInteger currentKarmaPoints;
@property (nonatomic, copy) NSString *formattedWallet;
@property (nonatomic, copy) NSString *formattedLifePoints;
@property (nonatomic, copy) NSString *formattedAstralEnergy;
@property (nonatomic, copy) NSString *formattedKarmaPoints;
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *formattedPositiveTraits;
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *formattedNegativeTraits;
@end
#endif // _DSACHARACTERVIEWMODEL_H_