mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 12:01:36 +08:00
feat: 914和电梯使用提示
This commit is contained in:
15
DataBase/Serialization/HintData.cs
Normal file
15
DataBase/Serialization/HintData.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user