blob: c9f30e392c8a084b803479e6576ce6f0bf34ccd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef WALLTYPE_H_
#define WALLTYPE_H_
#include "graphics/Graphics.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 *descs;
};
#endif
|