1// Aseprite Document Library
2// Copyright (c) 2020-2021 Igara Studio S.A.
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef DOC_RGBMAP_ALGORITHM_H_INCLUDED
8#define DOC_RGBMAP_ALGORITHM_H_INCLUDED
9#pragma once
10
11namespace doc {
12
13 enum class RgbMapAlgorithm {
14 DEFAULT = 0,
15 RGB5A3 = 1,
16 OCTREE = 2,
17 };
18
19} // namespace doc
20
21#endif
22