36 lines
882 B
C#
36 lines
882 B
C#
using Google.Protobuf;
|
|
using Google.Protobuf.WellKnownTypes;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
using ServerCommon;
|
|
using ServerCommon.BusinessLogDomain;
|
|
using MetaAssets;
|
|
|
|
|
|
namespace GameServer;
|
|
|
|
public class RewardPodCombat : RewardBase
|
|
{
|
|
public RewardPodCombat(Player player, string userGuid, List<MetaAssets.Reward> rewards) : base(player, userGuid, rewards)
|
|
{
|
|
|
|
}
|
|
|
|
public override Task<Result> prepareReward()
|
|
{
|
|
return Task.FromResult(new Result());
|
|
}
|
|
|
|
//=====================================================================================
|
|
// 보상처리 후 필요한 로직들 처리
|
|
//=====================================================================================
|
|
public override Task<Result> finalizeReward()
|
|
{
|
|
var result = new Result();
|
|
|
|
|
|
return Task.FromResult(result);
|
|
}
|
|
} |