/* * This file is part of the Illarion project. * * Copyright © 2015 - Illarion e.V. * * Illarion is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Illarion 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. */ package illarion.mapedit.resource; import illarion.common.graphics.TileInfo; import javax.annotation.Nonnull; import java.awt.*; /** * @author Tim */ public class TileImg { private final int id; private final String name; private final int frameCount; private final int animationSpeed; private final TileInfo info; @Nonnull private final Image[] img; private final String description; public TileImg( int id, String name, int frameCount, int animationSpeed, TileInfo info, @Nonnull Image[] img, String description) { this.id = id; this.name = name; this.frameCount = frameCount; this.animationSpeed = animationSpeed; this.info = info; this.img = new Image[img.length]; System.arraycopy(img, 0, this.img, 0, img.length); this.description = description; } public int getId() { return id; } public String getName() { return name; } public int getFrameCount() { return frameCount; } public int getAnimationSpeed() { return animationSpeed; } public TileInfo getInfo() { return info; } @Nonnull public Image[] getImg() { return img; } public String getDescription() { return description; } }