| 1 | // Aseprite Document Library |
|---|---|
| 2 | // Copyright (C) 2019-2020 Igara Studio S.A. |
| 3 | // Copyright (C) 2001-2018 David Capello |
| 4 | // |
| 5 | // This file is released under the terms of the MIT license. |
| 6 | // Read LICENSE.txt for more information. |
| 7 | |
| 8 | #ifndef DOC_DOC_H_INCLUDED |
| 9 | #define DOC_DOC_H_INCLUDED |
| 10 | #pragma once |
| 11 | |
| 12 | #include "doc/blend_funcs.h" |
| 13 | #include "doc/blend_mode.h" |
| 14 | #include "doc/brush.h" |
| 15 | #include "doc/cel.h" |
| 16 | #include "doc/cels_range.h" |
| 17 | #include "doc/color.h" |
| 18 | #include "doc/color_scales.h" |
| 19 | #include "doc/document.h" |
| 20 | #include "doc/frame.h" |
| 21 | #include "doc/image.h" |
| 22 | #include "doc/image_impl.h" |
| 23 | #include "doc/image_ref.h" |
| 24 | #include "doc/images_map.h" |
| 25 | #include "doc/layer.h" |
| 26 | #include "doc/layer_tilemap.h" |
| 27 | #include "doc/mask.h" |
| 28 | #include "doc/object.h" |
| 29 | #include "doc/palette.h" |
| 30 | #include "doc/palette_picks.h" |
| 31 | #include "doc/pixel_format.h" |
| 32 | #include "doc/pixel_ratio.h" |
| 33 | #include "doc/primitives.h" |
| 34 | #include "doc/primitives_fast.h" |
| 35 | #include "doc/remap.h" |
| 36 | #include "doc/rgbmap.h" |
| 37 | #include "doc/rgbmap_rgb5a3.h" |
| 38 | #include "doc/slice.h" |
| 39 | #include "doc/slices.h" |
| 40 | #include "doc/sprite.h" |
| 41 | #include "doc/tag.h" |
| 42 | #include "doc/tags.h" |
| 43 | #include "doc/tile.h" |
| 44 | #include "doc/tileset.h" |
| 45 | #include "doc/tilesets.h" |
| 46 | |
| 47 | #endif |
| 48 |