1 // Aseprite UI Library
2 // Copyright (C) 2001-2015  David Capello
3 //
4 // This file is released under the terms of the MIT license.
5 // Read LICENSE.txt for more information.
6 
7 #ifndef UI_MOVE_REGION_H_INCLUDED
8 #define UI_MOVE_REGION_H_INCLUDED
9 #pragma once
10 
11 #include "gfx/region.h"
12 
13 namespace ui {
14 
15   class Manager;
16 
17   void move_region(Manager* manager, const gfx::Region& region, int dx, int dy);
18 
19 } // namespace ui
20 
21 #endif
22