forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.h
More file actions
38 lines (35 loc) · 926 Bytes
/
doc.h
File metadata and controls
38 lines (35 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Aseprite Document 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 DOC_DOC_H_INCLUDED
#define DOC_DOC_H_INCLUDED
#pragma once
#include "doc/blend_funcs.h"
#include "doc/blend_mode.h"
#include "doc/brush.h"
#include "doc/cel.h"
#include "doc/cels_range.h"
#include "doc/color.h"
#include "doc/color_scales.h"
#include "doc/document.h"
#include "doc/frame.h"
#include "doc/frame_tag.h"
#include "doc/frame_tags.h"
#include "doc/image.h"
#include "doc/image_impl.h"
#include "doc/image_ref.h"
#include "doc/layer.h"
#include "doc/mask.h"
#include "doc/object.h"
#include "doc/palette.h"
#include "doc/palette_picks.h"
#include "doc/pixel_format.h"
#include "doc/primitives.h"
#include "doc/primitives_fast.h"
#include "doc/remap.h"
#include "doc/rgbmap.h"
#include "doc/site.h"
#include "doc/sprite.h"
#endif