초기커밋
This commit is contained in:
29
GameServer/Contents/Reward/IReward.cs
Normal file
29
GameServer/Contents/Reward/IReward.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
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();
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user