1 // Aseprite
2 // Copyright (C) 2001-2015  David Capello
3 //
4 // This program is distributed under the terms of
5 // the End-User License Agreement for Aseprite.
6 
7 #ifndef APP_CMD_FLIP_MASKED_CEL_H_INCLUDED
8 #define APP_CMD_FLIP_MASKED_CEL_H_INCLUDED
9 #pragma once
10 
11 #include "app/cmd_sequence.h"
12 #include "doc/algorithm/flip_type.h"
13 #include "doc/color.h"
14 
15 namespace doc {
16   class Cel;
17 }
18 
19 namespace app {
20 namespace cmd {
21   using namespace doc;
22 
23   class FlipMaskedCel : public CmdSequence {
24   public:
25     FlipMaskedCel(Cel* cel, doc::algorithm::FlipType flipType);
26   };
27 
28 } // namespace cmd
29 } // namespace app
30 
31 #endif
32