doom

a minimalistic implementation of doom
git clone git://ssnf.xyz/doom
Log | Files | Refs

m_random.h (179B)


      1 
      2 
      3 
      4 
      5 
      6 
      7 
      8 
      9 
     10 
     11 
     12 
     13 
     14 
     15 
     16 
     17 
     18 
     19 
     20 
     21 
     22 
     23 #ifndef __M_RANDOM__
     24 #define __M_RANDOM__
     25 
     26 
     27 #include "doomdef.h"
     28 
     29 
     30 
     31 
     32 
     33 int M_Random (void);
     34 
     35 
     36 int P_Random (void);
     37 
     38 
     39 void M_ClearRandom (void);
     40 
     41 
     42 #endif
     43 
     44 
     45 
     46 
     47