Add LibDataBase
This commit is contained in:
21
LibDataBase/TextPoint.cs
Normal file
21
LibDataBase/TextPoint.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LibDataBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 点
|
||||
/// </summary>
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user