summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/resource_type.hpp
blob: b7204a9fa139f8721d221038c3a602c71219f2b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MBGL_STORAGE_RESOURCE_TYPE
#define MBGL_STORAGE_RESOURCE_TYPE

#include <cstdint>

namespace mbgl {

enum class ResourceType : uint8_t {
    Unknown = 0,
    Tile = 1,
    Glyphs = 2,
    Image = 3,
    JSON = 4
};

}

#endif