/* Copyright 2012 Jan Ove Saltvedt This file is part of KBot. KBot 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 3 of the License, or (at your option) any later version. KBot 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 KBot. If not, see <http://www.gnu.org/licenses/>. */ package com.kbotpro.bot; /** * Created by IntelliJ IDEA. * User: Jan Ove Saltvedt * Date: Oct 17, 2009 * Time: 7:54:40 PM * To change this template use File | Settings | File Templates. */ public class RenderData { public int xOff; public int yOff; public int zOff; public int x1; public int x2; public int x3; public int y1; public int y2; public int y3; public int z1; public int z2; public int z3; public int screenFactorX; public int screenFactorY; public int minX; public int minY; public int maxX; public int maxY; }