mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-07 13:13:41 +02:00
Initial commit
This commit is contained in:
16
src/Services/GameplayService.cs
Normal file
16
src/Services/GameplayService.cs
Normal 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
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user