Files

8 lines
180 B
C#
Raw Permalink Normal View History

2026-06-12 10:11:36 +08:00
namespace LoveLegend
{
public static class AnimConst
{
public const float AnimFrameRate = 30;
public const float SecondRateUnit = 1 / AnimFrameRate;
}
}