You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
380 B
Go

package main
import (
"fmt"
"github.com/golang/protobuf/proto"
"github.com/jordanorelli/hyperstone/dota"
)
func dumpClasses(m proto.Message) {
v, ok := m.(*dota.CDemoClassInfo)
if !ok {
return
}
for _, class := range v.GetClasses() {
fmt.Printf("class-id: %d network-name: %s table-name: %s\n", class.GetClassId(), class.GetNetworkName(), class.GetTableName())
}
}