summaryrefslogtreecommitdiff
path: root/src/simulation/WallType.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/WallType.h')
-rw-r--r--src/simulation/WallType.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/simulation/WallType.h b/src/simulation/WallType.h
new file mode 100644
index 0000000..bd453d8
--- /dev/null
+++ b/src/simulation/WallType.h
@@ -0,0 +1,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