/** * */ package cn.dawn47.misc.entity; /** * @author WeathFolD * */ public class PosterInfo { //int posterID; public final float width, height; /** * */ public PosterInfo(float w, float h) { width = w; height = h; } }