aseprite/src/gfx/fwd.h
David Capello 080e7e3f68 Add subpixel bounds for reference layer cels
Now we can move a reference layer cel in a X,Y position with floating
point coordinates (i.e. in a subpixel position).
2016-10-10 23:42:47 -03:00

30 lines
605 B
C++

// Aseprite Gfx Library
// Copyright (C) 2001-2016 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef GFX_FWD_H_INCLUDED
#define GFX_FWD_H_INCLUDED
#pragma once
namespace gfx {
template<typename T> class BorderT;
template<typename T> class ClipT;
template<typename T> class PointT;
template<typename T> class RectT;
template<typename T> class SizeT;
typedef BorderT<int> Border;
typedef ClipT<int> Clip;
typedef PointT<int> Point;
typedef RectT<int> Rect;
typedef SizeT<int> Size;
class Region;
} // namespace gfx
#endif