using System; using System.Collections.Generic; namespace LibDataBase { /// /// 点 /// public class TextPoint { public int x; public int y; public string txt; public TextPoint(int x, int y,string txt) { this.x = x; this.y = y; this.txt = txt; } } }