feat: 914和电梯使用提示

This commit is contained in:
3cxc
2026-02-13 01:13:10 +08:00
parent 69bb0e948e
commit ec92dcab22
7 changed files with 199 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace EasyTools.DataBase.Serialization
{
public struct HintData
{
public float x, y;
public int font;
public HintData(float x, float y, int font)
{
this.x = x;
this.y = y;
this.font = font;
}
}
}