aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework 1/GuessingGame.hpp
blob: fa0f85d6f1c3b845580497834fca77d4fc205323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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