summaryrefslogtreecommitdiff
path: root/src/common/random.h
blob: 379e675b203cd437b1ff742124bf13bd6a0d789e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef COMMON_RANDOM_H
#define COMMON_RANDOM_H

#include "common/cbasetypes.h"

#ifdef HERCULES_CORE
void rnd_init(void);
void rnd_seed(uint32);

int32 rnd(void);// [0, SINT32_MAX]
uint32 rnd_roll(uint32 dice_faces);// [0, dice_faces)
int32 rnd_value(int32 min, int32 max);// [min, max]
double rnd_uniform(void);// [0.0, 1.0)
double rnd_uniform53(void);// [0.0, 1.0)
#endif // HERCULES_CORE

#endif /* COMMON_RANDOM_H */