Files
MariesWonderland/src/Services/GameplayService.cs
2026-04-21 01:10:25 +10:00

17 lines
577 B
C#

using Grpc.Core;
using MariesWonderland.Proto.GamePlay;
namespace MariesWonderland.Services;
public class GameplayService : MariesWonderland.Proto.GamePlay.GameplayService.GameplayServiceBase
{
/// <summary>Performs pre-battle validation. Returns no popups and an empty gacha badge list.</summary>
public override Task<CheckBeforeGamePlayResponse> CheckBeforeGamePlay(CheckBeforeGamePlayRequest request, ServerCallContext context)
{
return Task.FromResult(new CheckBeforeGamePlayResponse
{
IsExistUnreadPop = false
});
}
}