Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. string PullOne()
  2. {
  3.    int slotChoices = 4;
  4.    string slotPull[slotChoices];
  5.       slotPull[0] = "cherries";
  6.       slotPull[1] = "BAR";
  7.       slotPull[2] = "space";
  8.       slotPull[3] = "7";
  9.       return slotPull[rand() % 4];
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement