A variant of Minecraft cat entity. @param asset the key of the texture that cats with this variant should have @since 1.0
| 12 | * @since 1.0 |
| 13 | */ |
| 14 | public record CatVariant(@NonNull Key asset) { |
| 15 | /** |
| 16 | * Constructs the {@linkplain CatVariant cat variant}. |
| 17 | * |
| 18 | * @param asset the key of the texture that cats with this variant should have |
| 19 | * @since 1.0 |
| 20 | */ |
| 21 | public CatVariant { |
| 22 | Objects.requireNonNull(asset, "asset"); |
| 23 | } |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected