summaryrefslogtreecommitdiff
path: root/src/Utils/Utils.hpp
blob: 32c07ed482426755c52aebc0bd74bbe573107de6 (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