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

13 lines
236 B
C#
Raw Normal View History

2021-11-23 13:20:07 +08:00
using System;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
2021-01-11 08:54:28 +08:00
{
/// <summary>
2021-11-23 13:20:07 +08:00
/// Coordinate system component.
2022-03-24 08:37:06 +08:00
/// |
2021-11-23 13:20:07 +08:00
/// 坐标系系统。
2021-01-11 08:54:28 +08:00
/// </summary>
2021-11-23 13:20:07 +08:00
[Serializable]
public abstract class CoordSystem : MainComponent
2022-05-22 22:17:38 +08:00
{ }
2021-01-11 08:54:28 +08:00
}