A set of classes for parsing, evaluating, and formatting die roll strings.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SA_DiceComparators.h 482B

12345678910111213141516171819
  1. //
  2. // SA_DiceComparators.h
  3. // DieBot Mobile
  4. //
  5. // Created by Sandy Achmiz on 5/4/16.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. #ifndef SA_DiceComparators_h
  10. #define SA_DiceComparators_h
  11. NSComparisonResult compareEvaluatedExpressionsByResult(NSDictionary* expression1,
  12. NSDictionary *expression2);
  13. NSComparisonResult compareEvaluatedExpressionsByAttemptBonus(NSDictionary* expression1,
  14. NSDictionary *expression2);
  15. #endif /* SA_DiceComparators_h */