summaryrefslogtreecommitdiff
path: root/src/resources/atlasitem.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-18 21:28:29 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-18 21:28:29 +0300
commit49a7df51386e49d51b7bdd626265f61be3833a3d (patch)
tree108e1b26e4c0fd00a7dd580037a932bbda00d29a /src/resources/atlasitem.h
parentcba820971cfc204050aa9bbaccb55ba35fba4ae1 (diff)
downloadplus-49a7df51386e49d51b7bdd626265f61be3833a3d.tar.gz
plus-49a7df51386e49d51b7bdd626265f61be3833a3d.tar.bz2
plus-49a7df51386e49d51b7bdd626265f61be3833a3d.tar.xz
plus-49a7df51386e49d51b7bdd626265f61be3833a3d.zip
Move atlasitem into separate file.
Diffstat (limited to 'src/resources/atlasitem.h')
-rw-r--r--src/resources/atlasitem.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/resources/atlasitem.h b/src/resources/atlasitem.h
new file mode 100644
index 000000000..e3e35646b
--- /dev/null
+++ b/src/resources/atlasitem.h
@@ -0,0 +1,53 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2012-2014 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_ATLASITEM_H
+#define RESOURCES_ATLASITEM_H
+
+#ifdef USE_OPENGL
+
+#include "resources/image.h"
+
+#include <string>
+
+struct AtlasItem final
+{
+ explicit AtlasItem(Image *const image0) :
+ image(image0),
+ name(),
+ x(0),
+ y(0),
+ width(image0->mBounds.w),
+ height(image0->mBounds.h)
+ {
+ }
+
+ A_DELETE_COPY(AtlasItem)
+
+ Image *image;
+ std::string name;
+ int x;
+ int y;
+ int width;
+ int height;
+};
+
+#endif // USE_OPENGL
+#endif // RESOURCES_ATLASITEM_H