30 lines
661 B
C#
30 lines
661 B
C#
using ServerCommon;
|
|
using System.Collections.Concurrent;
|
|
|
|
using Amazon.DynamoDBv2.DocumentModel;
|
|
|
|
|
|
using static ClientToGameMessage.Types;
|
|
|
|
namespace GameServer
|
|
{
|
|
|
|
public interface IReward
|
|
{
|
|
Task<Result> prepareReward();
|
|
Task<Result> addReward();
|
|
Task<Result> finalizeReward();
|
|
void postRewardProcess();
|
|
|
|
//List<CurrencyMaxNoti> getCurrencyMaxNoties();
|
|
//List<Item> getRewardItems();
|
|
//List<ItemEntity> getItemEntities();
|
|
//List<ILogInvoker> getCurrencyLogInvokers();
|
|
//List<ILogInvoker> getItemLogInvokers();
|
|
//List<ILogInvoker> getItemDeleteInvokers();
|
|
|
|
}
|
|
|
|
|
|
}
|