summaryrefslogtreecommitdiffstats
path: root/src/resources/layer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/layer.h')
-rw-r--r--src/resources/layer.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/resources/layer.h b/src/resources/layer.h
new file mode 100644
index 0000000..82504de
--- /dev/null
+++ b/src/resources/layer.h
@@ -0,0 +1,14 @@
+#ifndef RESOURCE_LAYER_H
+#define RESOURCE_LAYER_H
+
+#include "resource.h"
+
+struct layer {
+ struct resource res;
+ char *name;
+ char *encoding;
+ char *compression;
+ struct layer *next;
+};
+
+#endif