From 6b7cd4e4d4499a747f1a08b5e16efc1537f821d6 Mon Sep 17 00:00:00 2001 From: liwei1dao Date: Mon, 21 Nov 2022 12:33:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0reddot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- comm/imodule.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/comm/imodule.go b/comm/imodule.go index 6573b11c4..d53e21c51 100644 --- a/comm/imodule.go +++ b/comm/imodule.go @@ -132,7 +132,7 @@ type ( /// 查询章节ID GetUsermainLineData(uid string) (mainlineId int32) ///红点 - Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool + IReddot } //任务 ITask interface { @@ -149,7 +149,7 @@ type ( // 获取已完成的任务列表 GetTaskFinished(uid string, taskType TaskTag) []*pb.DBTask ///红点 - Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool + IReddot } // 随机任务 @@ -215,7 +215,7 @@ type ( ModifyPagodaFloor(session IUserSession, level int32) (code pb.ErrorCode) CheckUserBasePagodaInfo(uid string) (data *pb.DBPagodaRecord) // 查询玩家最佳通关记录 ///红点 - Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool + IReddot } IHeroFetter interface { @@ -244,14 +244,14 @@ type ( // 获取公会成员 MembersBySociatyId(sociatyId string) (list []*pb.SociatyMemberInfo) ///红点 - Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool + IReddot } //星座图 IHoroscope interface { //计算新作图属性 ComputeHeroNumeric(uid string, hero ...*pb.DBHero) ///红点 - Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool + IReddot } IPrivilege interface { // 创建一个新的特权卡 @@ -266,7 +266,7 @@ type ( //武馆 IMartialhall interface { ///红点 - Reddot(session IUserSession, rid ...ReddotType) map[ReddotType]bool + IReddot } // 世界任务 IWorldtask interface {