roll.h 205 B

1234567891011121314
  1. //
  2. // roll.hpp
  3. // dice-roll
  4. //
  5. // Created by Sam Jaffe on 12/1/18.
  6. // Copyright © 2018 Sam Jaffe. All rights reserved.
  7. //
  8. #pragma once
  9. namespace dice {
  10. struct dice;
  11. void roll(dice const & d);
  12. }