5ee10d14e4
for example, elements no longer include Client.h or Graphics.h, and interface stuff won't include Window.h or Graphics.h unless requested
19 lines
311 B
C++
19 lines
311 B
C++
#ifndef WALLTYPE_H_
|
|
#define WALLTYPE_H_
|
|
|
|
#include "graphics/Pixel.h"
|
|
class VideoBuffer;
|
|
|
|
struct wall_type
|
|
{
|
|
pixel colour;
|
|
pixel eglow; // if emap set, add this to fire glow
|
|
int drawstyle;
|
|
VideoBuffer * (*textureGen)(int, int, int);
|
|
const char *name;
|
|
const char *identifier;
|
|
const char *descs;
|
|
};
|
|
|
|
#endif
|