summaryrefslogtreecommitdiff
path: root/src/simulation/WallType.h
blob: bd453d8c583990c907867ebf30a4b20b05adf998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  WallType.h
//  The Powder Toy
//
//  Created by Simon Robertshaw on 04/06/2012.
//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//

#ifndef The_Powder_Toy_WallType_h
#define The_Powder_Toy_WallType_h

struct wall_type
{
	pixel colour;
	pixel eglow; // if emap set, add this to fire glow
	int drawstyle;
	const char *descs;
};

#endif