diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-26 15:36:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-26 15:36:32 +0300 |
commit | 27d22b3573a946cc4f6334e870caea9a1184a187 (patch) | |
tree | 4a13a769024cec6ca26c17c5a3b32e125a20cc48 /src/resources/rect/doublerect.h | |
parent | 7d613787059471c8e7323afd80d3d3f5764a2620 (diff) | |
download | mv-27d22b3573a946cc4f6334e870caea9a1184a187.tar.gz mv-27d22b3573a946cc4f6334e870caea9a1184a187.tar.bz2 mv-27d22b3573a946cc4f6334e870caea9a1184a187.tar.xz mv-27d22b3573a946cc4f6334e870caea9a1184a187.zip |
Move doublerect into separate file.
Diffstat (limited to 'src/resources/rect/doublerect.h')
-rw-r--r-- | src/resources/rect/doublerect.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/resources/rect/doublerect.h b/src/resources/rect/doublerect.h new file mode 100644 index 000000000..cee371397 --- /dev/null +++ b/src/resources/rect/doublerect.h @@ -0,0 +1,34 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2016 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef RESOURCES_RECT_DOUBLERECT_H +#define RESOURCES_RECT_DOUBLERECT_H + +#include "localconsts.h" + +#include <SDL_video.h> + +struct DoubleRect final +{ + SDL_Rect src; + SDL_Rect dst; +}; + +#endif // RESOURCES_RECT_DOUBLERECT_H |