1
0
forked from akanyan/mu3-mods

feat!: NaiveRating -> MoreProfileOptions

This commit is contained in:
2024-12-23 16:20:25 +00:00
parent 1b8f0e617e
commit 57d7be2bfb
24 changed files with 327 additions and 104 deletions

View File

@ -1,6 +1,9 @@
namespace MU3.Game;
using MonoMod;
namespace MU3.Game;
// This is in SessionResult because BattleResult is a struct
class patch_SessionResult: SessionResult {
public int PlatinumFastCount { get; set; }
public int PlatinumLateCount { get; set; }
public int platinumFastCount;
public int platinumLateCount;
}