Please enable JavaScript in your browser!
Página inicial
Explorar
Ajuda
Entrar
tomtsagk
/
csdl_game_engine
Observar
1
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Branch:
master
Branches
Tags
master
csdl_game_en...
/
dd_math.c
dd_math.c
93 B
Link permanente
Histórico
Raw
1
2
3
4
5
6
7
#include "dd_math.h"
#include <stdlib.h>
int dd_math_rand(int max) {
return rand() %max;
}