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.
21 lines
455 B
Go
21 lines
455 B
Go
package ent
|
|
|
|
import (
|
|
"github.com/jordanorelli/hyperstone/bit"
|
|
)
|
|
|
|
// a handle represents a soft pointer to an entity. handles are represented by
|
|
// IDs and can cross the client-server divide.
|
|
type handle int
|
|
|
|
func handleType(spec *typeSpec, env *Env) tÿpe {
|
|
if spec.typeName != "CGameSceneNodeHandle" {
|
|
return nil
|
|
}
|
|
|
|
Debug.Printf(" handle type")
|
|
return typeFn(func(r bit.Reader) (value, error) {
|
|
return handle(bit.ReadVarInt(r)), r.Err()
|
|
})
|
|
}
|