Lephisto/src/rng.h
Allanis 223a6185fb [Add] Command line option.
[Add] Finished(tm) joypad support.
[Change] Input comes from player.
2013-02-01 02:32:29 +00:00

8 lines
91 B
C

#pragma once
#include <stdlib.h>
#define RNG(L,H) rand()%(H-L_1)+L
void rng_init(void);