1// Aseprite UI Library
2// Copyright (C) 2019 Igara Studio S.A.
3// Copyright (C) 2001-2015 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 UI_MOVE_REGION_H_INCLUDED
9#define UI_MOVE_REGION_H_INCLUDED
10#pragma once
11
12#include "gfx/region.h"
13
14namespace ui {
15
16 class Display;
17
18 void move_region(Display* display, const gfx::Region& region, int dx, int dy);
19
20} // namespace ui
21
22#endif
23