mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 12:01:36 +08:00
16 lines
292 B
C#
16 lines
292 B
C#
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;
|
|
}
|
|
}
|
|
}
|