This commit is contained in:
aozhiwei 2024-04-02 09:06:11 +08:00
parent f9bf1f2f19
commit 34dfbdaee0
2 changed files with 3 additions and 2 deletions

View File

@ -80,7 +80,7 @@ type GuildMgr interface {
GetGuildByAccountId(string) Guild
GetRecommendGuilds(string) []Guild
GetGuildRank() []Guild
AsyncCreateGuild(string, string, func(int32, string, int64))
AsyncCreateGuild(string, int32, string, func(int32, string, int64))
AsyncGetApplyList(int64, string, func(int32, string, int64, []string))
AsyncApplyJoin(string, string, func(int32, string))
AsyncAcceptApply(string, string, func(int32, string))

View File

@ -124,7 +124,8 @@ func (this *guildMgr) GetGuildRank() []common.Guild {
return guilds
}
func (this *guildMgr) AsyncCreateGuild(string, string, func(int32, string, int64)) {
func (this *guildMgr) AsyncCreateGuild(accountId string, avatar int32, name string,
cb func(int32, string, int64)) {
}