Initial commit

This commit is contained in:
BillyCool
2026-04-21 01:10:25 +10:00
commit c5595ea083
1752 changed files with 45767 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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
});
}
}