feat(bp): IBattlePassService skeleton + level-curve method + DI

This commit is contained in:
gamer147
2026-05-26 22:49:30 -04:00
parent 1420c60486
commit 9043e20646
7 changed files with 96 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using SVSim.Database.Services;
namespace SVSim.EmulatedEntrypoint.Services;
/// <summary>
/// Result of <see cref="IBattlePassService.AddPointsAsync"/>. Future point-source endpoints
/// (mission/retire, battle finish handlers) translate this into the embedded
/// <c>battle_pass_gauge_info</c> block on their response.
/// </summary>
public sealed record BattlePassPointGrant(
int BeforePoint,
int BeforeLevel,
int AfterPoint,
int AfterLevel,
int PointAdd,
BattlePassPointSource Source,
IReadOnlyList<GrantedReward> NewlyClaimed);