1 //
2 // Copyright(C) 1993-1996 Id Software, Inc.
3 // Copyright(C) 2005-2014 Simon Howard
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // DESCRIPTION:
16 //	Typedefs related to to textures etc.,
17 //	 isolated here to make it easier separating modules.
18 //
19 
20 
21 #ifndef __D_TEXTUR__
22 #define __D_TEXTUR__
23 
24 #include "doomtype.h"
25 
26 
27 
28 
29 //
30 // Flats?
31 //
32 // a pic is an unmasked block of pixels
33 typedef struct
34 {
35     byte		width;
36     byte		height;
37     byte		data;
38 } pic_t;
39 
40 
41 
42 
43 #endif
44