1// Aseprite Render Library
2// Copyright (c) 2018 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef RENDER_ONIONSKIN_TYPE_H_INCLUDED
8#define RENDER_ONIONSKIN_TYPE_H_INCLUDED
9#pragma once
10
11namespace render {
12
13 enum class OnionskinType {
14 NONE,
15 MERGE,
16 RED_BLUE_TINT,
17 };
18
19} // namespace render
20
21#endif
22