Files
Huangzj f3c056f84e feat(Go-Tool):
2020/12/31:新增项目案例(角色技能树)
               2020/12/31: 修改diliver包结构
2020-12-31 14:25:25 +08:00

14 lines
312 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* @Author : huangzj
* @Time : 2020/12/29 15:52
* @Description
*/
package model
type Topology struct {
HeadSkillNode *SkillNode //拓扑头结点
CounsellorId int //拓扑对应的大臣Id
SkillIdMap map[int]*SkillNode //技能ID对应的技能节点,方便查找
}