diff options
| author | arthurtspears <[email protected]> | 2024-04-20 11:16:36 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-20 11:16:36 -0700 |
| commit | 659a1f12d935130bf8da4fe14165e4f421ac7c18 (patch) | |
| tree | cebf8ee2c18c8e0aa4cf5fc4630a8005164b068d /CST 126/Homework 1/GuessingGame.hpp | |
| parent | Added helpers.h file. (diff) | |
| download | homework-1-arthurtspears-develop.tar.xz homework-1-arthurtspears-develop.zip | |
* all work up until inclass practice
* Added Unit Tests Project
* Added second unit tests project as example.
* Bring up to date for merge
Diffstat (limited to 'CST 126/Homework 1/GuessingGame.hpp')
| -rw-r--r-- | CST 126/Homework 1/GuessingGame.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/CST 126/Homework 1/GuessingGame.hpp b/CST 126/Homework 1/GuessingGame.hpp new file mode 100644 index 0000000..fa0f85d --- /dev/null +++ b/CST 126/Homework 1/GuessingGame.hpp @@ -0,0 +1,22 @@ +#ifndef GUESSING_GAME_HPP +#define GUESSING_GAME_HPP + +#include "helpers.hpp" +#include <iostream> + +using std::cout; +using std::endl; + +inline void OutputRandomNumber() { + cout << Random(1, 10000) << endl; +} + + + + + +#endif // !GUESSING_GAME_HPP + + + + |