Add missing src/render/onionskin_position.h file

This commit is contained in:
David Capello 2015-07-31 16:07:24 -03:00
parent bf54fd26d3
commit 1b217f257c

View File

@ -0,0 +1,20 @@
// Aseprite Render Library
// Copyright (c) 2001-2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef RENDER_ONIONSKIN_POSITION_H_INCLUDED
#define RENDER_ONIONSKIN_POSITION_H_INCLUDED
#pragma once
namespace render {
enum class OnionskinPosition {
BEHIND,
INFRONT,
};
} // namespace render
#endif