summaryrefslogtreecommitdiff
path: root/src/Utils.hpp
blob: e977db48ee303e769f68fe3b17ed13a5819bb959 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <string>

#ifndef UTILS_HPP

class Utils{
	public:
		int catchInputInt(int* input);
		int catchReturn(int renum);
};

#endif