예제 #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();
 }