package ent import ( "github.com/jordanorelli/hyperstone/bit" "github.com/jordanorelli/hyperstone/dota" ) var atom_types = map[string]typeFn{ "uint16": func(r bit.Reader) (value, error) { return uint16(bit.ReadVarInt(r)), r.Err() }, } func atomType(flat *dota.ProtoFlattenedSerializerFieldT, env *Env) tÿpe { var_type := env.symbol(int(flat.GetVarTypeSym())) if t, ok := atom_types[var_type]; ok { return t } return nil }