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_DiceErrorHandling.h 491B

123456789101112131415161718
  1. //
  2. // SA_DiceErrorHandling.h
  3. // RPGBot
  4. //
  5. // Created by Sandy Achmiz on 1/11/16.
  6. //
  7. //
  8. #ifndef SA_DiceErrorHandling_h
  9. #define SA_DiceErrorHandling_h
  10. #import <Foundation/Foundation.h>
  11. void addErrorToExpression (NSString *error, NSMutableDictionary *expression);
  12. void addErrorsFromExpressionToExpression (NSDictionary *sourceExpression, NSMutableDictionary *targetExpression);
  13. NSArray <NSString *> *getErrorsForExpression (NSDictionary *expression);
  14. #endif /* SA_DiceErrorHandling_h */