12 lines
335 B
Java
12 lines
335 B
Java
package com.hypixel.hytale.codec;
|
|
|
|
import javax.annotation.Nullable;
|
|
import org.bson.BsonDocument;
|
|
|
|
public interface InheritCodec<T> extends Codec<T>, RawJsonInheritCodec<T> {
|
|
@Nullable
|
|
T decodeAndInherit(BsonDocument var1, T var2, ExtraInfo var3);
|
|
|
|
void decodeAndInherit(BsonDocument var1, T var2, T var3, ExtraInfo var4);
|
|
}
|