summaryrefslogtreecommitdiffstats
path: root/src/resources/layer.h
blob: 82504de6a5f645217ef766c266de1c1976ba6995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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