1 /*
2  * Copyright (C) 1999  Andreas Gustafsson
3  * Ported to Linux by Tugrul Galatali <tugrul@galatali.com>
4  *
5  * Colorfire is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Colorfire is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18 
19 #ifndef COLORFIRE_TEXTURES_H
20 #define COLORFIRE_TEXTURES_H
21 
22 extern unsigned char *smokemap;
23 extern unsigned int smokemap_size;
24 extern unsigned int smokemap_compressedsize;
25 extern unsigned char *ripplemap;
26 extern unsigned int ripplemap_size;
27 extern unsigned int ripplemap_compressedsize;
28 
29 #endif
30