001package net.minecraftforge.client.model.obj; 002 003import cpw.mods.fml.relauncher.Side; 004import cpw.mods.fml.relauncher.SideOnly; 005 006@SideOnly(Side.CLIENT) 007public class Vertex 008{ 009 010 public float x, y, z; 011 012 public Vertex(float x, float y) 013 { 014 this(x, y, 0F); 015 } 016 017 public Vertex(float x, float y, float z) 018 { 019 this.x = x; 020 this.y = y; 021 this.z = z; 022 } 023}