You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
hexmap/server/state/user.go

21 lines
580 B

package state
import "go.uber.org/zap/zapcore"
// UserState contains data about clients that is synced between client and server.
// Unlike the map, UserState is not persisted to disk, and all UserState is lost on shutdown.
type UserState struct {
ActiveColor Color `json:"activeColor"`
}
func (u UserState) MarshalLogObject(encoder zapcore.ObjectEncoder) error {
encoder.AddString("activeColor", u.ActiveColor.String())
return nil
}
// Copy creates a deep copy of this UserState.
func (u UserState) Copy() UserState {
return UserState{
ActiveColor: u.ActiveColor,
}
}