package org.cocos2d.types; //! A 3D vertex public class CCVertex3D { public float x; public float y; public float z; public CCVertex3D(float x, float y, float z) { this.x = x; this.y = y; this.z = z; } }