using System; using System.Collections.Generic; namespace FairyGUI { /// /// /// public class Emoji { /// /// 代表图片资源url。 /// public string url; /// /// 图片宽度。不设置(0)则表示使用原始宽度。 /// public int width; /// /// 图片高度。不设置(0)则表示使用原始高度。 /// public int height; /// /// /// /// /// /// public Emoji(string url, int width, int height) { this.url = url; this.width = width; this.height = height; } /// /// /// /// public Emoji(string url) { this.url = url; } } }