示例#1
0
文件: Font.cs 项目: wegiangb/ThreeLib
 /// <summary>
 ///
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public virtual bool Equals(Font other)
 {
     if (other == null)
     {
         return(false);
     }
     return(FontData.Equals(other.FontData) && Size.Equals(other.Size));
 }
示例#2
0
文件: Font.cs 项目: wegiangb/ThreeLib
 public Font()
 {
     FontData = new FontData();
 }