1 // Aseprite
2 // Copyright (C) 2001-2016  David Capello
3 //
4 // This program is distributed under the terms of
5 // the End-User License Agreement for Aseprite.
6 
7 #ifndef APP_UTIL_CREATE_CEL_COPY_H_INCLUDED
8 #define APP_UTIL_CREATE_CEL_COPY_H_INCLUDED
9 #pragma once
10 
11 #include "doc/frame.h"
12 
13 namespace doc {
14   class Cel;
15   class Sprite;
16 }
17 
18 namespace app {
19 
20   Cel* create_cel_copy(const Cel* srcCel,
21                        const Sprite* dstSprite,
22                        const Layer* dstLayer,
23                        const frame_t dstFrame);
24 
25 } // namespace app
26 
27 #endif
28