1 // Aseprite Render Library
2 // Copyright (c) 2001-2015 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_POSITION_H_INCLUDED
8 #define RENDER_ONIONSKIN_POSITION_H_INCLUDED
9 #pragma once
10 
11 namespace render {
12 
13   enum class OnionskinPosition {
14     BEHIND,
15     INFRONT,
16   };
17 
18 } // namespace render
19 
20 #endif
21