doom

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

d_textur.h (188B)


      1 
      2 
      3 
      4 
      5 
      6 
      7 
      8 
      9 
     10 
     11 
     12 
     13 
     14 
     15 
     16 
     17 
     18 
     19 
     20 
     21 
     22 
     23 
     24 #ifndef __D_TEXTUR__
     25 #define __D_TEXTUR__
     26 
     27 #include "doomdef.h"
     28 
     29 
     30 
     31 
     32 
     33 
     34 
     35 
     36 typedef struct
     37 {
     38     byte		width;
     39     byte		height;
     40     byte		data;
     41 } pic_t;
     42 
     43 
     44 
     45 
     46 #endif
     47 
     48 
     49 
     50 
     51