示例#1
0
文件: server.go 项目: Cristofori/kmud
func (self *connectionHandler) Write(text string) {
	utils.Write(self.conn, text, types.ColorModeNone)
}
示例#2
0
文件: user.go 项目: Cristofori/kmud
func (self *User) Write(text string) {
	utils.Write(self.conn, text, self.GetColorMode())
}