blob: c1801291260ee8dbd33d06cd513aa1018e5f3d72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/**
* Copyright (C) David Wolfe, 1999. All rights reserved.
* Ported to Qt and adapted for TDDD86, 2015.
*/
#ifndef UTILITIES_H
#define UTILITIES_H
struct Point {
int x;
int y;
};
/**
* Sets the seed of the random number generator.
*/
void rand_seed();
/**
* Returns a random integer in a range.
* @param a the bottom of the range
* @param b the top of the range
* &return a random number x having a <= x and x <= b
*/
int rand_int(int a, int b);
#endif // UTILITIES_H
|