Rizu/Rizu.Core/Models/BatchManualScoreJudgements.cs

23 lines
493 B
C#
Raw Permalink Normal View History

2024-05-21 20:29:18 +00:00
using System;
#if BEPINEX // When we're building for BepInEx, the dummy JsonInclude is *not* defined, so let's cover that base.
using System.Text.Json.Serialization;
#endif
namespace Rizu.Core.Models;
2024-05-21 20:29:18 +00:00
[Serializable]
public class BatchManualScoreJudgements
{
[JsonInclude]
2024-05-21 20:29:18 +00:00
public uint pcrit;
[JsonInclude]
2024-05-21 20:29:18 +00:00
public uint perfect;
[JsonInclude]
2024-05-21 20:29:18 +00:00
public uint great;
[JsonInclude]
2024-05-21 20:29:18 +00:00
public uint good;
[JsonInclude]
2024-05-21 20:29:18 +00:00
public uint miss;
}