示例#1
0
文件: Font.cs 项目: HaKDMoDz/Psy
 public void DrawString(string text, Rectangle rectangle, TextFormat format, Color4 color)
 {
     DrawString(null, text, rectangle, MapTextFormat(format), color.ToColor4());
 }
示例#2
0
文件: Font.cs 项目: HaKDMoDz/Psy
 public void DrawString(string text, int x, int y, Color4 color)
 {
     DrawString(null, text, x, y, color.ToColor4());
 }