Files
minego/pkg/protocol/packet/game/server/recipe_book_seen_recipe.go
2025-08-27 20:28:44 +08:00

19 lines
415 B
Go

package server
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type RecipeBookSeenRecipe struct {
RecipeID int32 `mc:"VarInt"`
}
func (*RecipeBookSeenRecipe) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundRecipeBookSeenRecipe
}
func init() {
registerPacket(packetid.ServerboundRecipeBookSeenRecipe, func() ServerboundPacket {
return &RecipeBookSeenRecipe{}
})
}