mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-17 08:43:11 +00:00
22 lines
421 B
C++
22 lines
421 B
C++
// Aseprite UI 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 UI_MOVE_REGION_H_INCLUDED
|
|
#define UI_MOVE_REGION_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include "gfx/region.h"
|
|
|
|
namespace ui {
|
|
|
|
class Manager;
|
|
|
|
void move_region(Manager* manager, const gfx::Region& region, int dx, int dy);
|
|
|
|
} // namespace ui
|
|
|
|
#endif
|