Advertisement
Slowhand-VI

gambling_h.fos

Aug 19th, 2015
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.95 KB | None | 0 0
  1. /**
  2.  *  Header for gambling.
  3.  *  Author: Slowhand.
  4.  *  Reviewer: N/A
  5.  */
  6.  
  7. #ifndef __GAMBLING__
  8. #define __GAMBLING__
  9.  
  10. /**< Type of the bet. */
  11. #define GAMB_NO_BET                 (0)
  12. #define GAMB_ROULETTE_BET_NUMBER    (1)
  13. #define GAMB_ROULETTE_BET_RED       (2)
  14. #define GAMB_ROULETTE_BET_BLACK     (3)
  15. #define GAMB_ROULETTE_BET_ODD       (4)
  16. #define GAMB_ROULETTE_BET_EVEN      (5)
  17. #define GAMB_ROULETTE_BET_MANQUE    (6)
  18. #define GAMB_ROULETTE_BET_PASSE     (7)
  19.  
  20. /**< Progress of the bet, GAMB_NO_BET used of no bet placed. */
  21. #define GAMB_BET_PLACED             (1)
  22. #define GAMB_BET_PAYED              (2)
  23. #define GAMB_BET_WON                (3)
  24. #define GAMB_BET_LOST               (4)
  25.  
  26. /**< Roulette colors */
  27. #define GAMB_ROULETTE_COLOR_NONE    (0)
  28. #define GAMB_ROULETTE_COLOR_RED     (1)
  29. #define GAMB_ROULETTE_COLOR_BLACK   (2)
  30. #define GAMB_ROULETTE_COLOR_GREEN   (3)
  31.  
  32. #define FORCE_DIALOG_ROULETTE_BET_VALUE (5)
  33.  
  34. #endif // __GAMBLING__
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement