Updated LICENSE and info comments
[SA_Dice.git] / SA_DiceEvaluator.h
blob6dce03591fac087b8462e788c29e62583ad8506b
1 //
2 // SA_DiceEvaluator.h
3 //
4 // Copyright 2016-2021 Said Achmiz.
5 // See LICENSE and README.md for more info.
7 #import <Foundation/Foundation.h>
9 @class SA_DiceBag;
10 @class SA_DiceExpression;
12 /************************************************/
13 #pragma mark SA_DiceEvaluator class declaration
14 /************************************************/
16 @interface SA_DiceEvaluator : NSObject
18 /************************/
19 #pragma mark - Properties
20 /************************/
22 @property NSUInteger maxDieCount;
23 @property NSUInteger maxDieSize;
25 /****************************/
26 #pragma mark - Public methods
27 /****************************/
29 -(SA_DiceExpression *) resultOfExpression:(SA_DiceExpression *)expression;
31 @end