Files
XCharts/Runtime/Internal/Basic/CoordSystem.cs

16 lines
233 B
C#
Raw Normal View History

2021-11-23 13:20:07 +08:00
2021-01-11 08:54:28 +08:00
2021-11-23 13:20:07 +08:00
using System;
2021-01-11 08:54:28 +08:00
namespace XCharts
{
/// <summary>
2021-11-23 13:20:07 +08:00
/// Coordinate system component.
///
/// 坐标系系统。
2021-01-11 08:54:28 +08:00
/// </summary>
2021-11-23 13:20:07 +08:00
[Serializable]
public abstract class CoordSystem : MainComponent
2021-01-11 08:54:28 +08:00
{
}
}