forked from University/epr24pr42-ojanssen2
17 lines
369 B
C
17 lines
369 B
C
|
#include "../std_lib_inc.h"
|
||
|
#ifndef UTIL_H
|
||
|
#define UTIL_H
|
||
|
|
||
|
namespace game
|
||
|
{
|
||
|
class MathUtil{
|
||
|
public:
|
||
|
/// Gebe die minimale Nummer aus einer Liste zurück
|
||
|
/// @param numbers Eine liste an nummern
|
||
|
/// @returns Die kleinste Nummer
|
||
|
static int get_min(const vector<int>& numbers);
|
||
|
};
|
||
|
} // game
|
||
|
|
||
|
#endif //UTIL_H
|