Add LibDataBase

This commit is contained in:
2025-12-23 10:35:27 +08:00
parent 2a6e5cb0d0
commit fed944a3cf
8 changed files with 143 additions and 19 deletions

21
LibDataBase/TextPoint.cs Normal file
View 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;
}
}
}