Archived
0

added Mapper interface

This commit is contained in:
2018-08-12 19:20:01 +03:00
parent c906be8bc3
commit 7c5fcdd711

View File

@@ -0,0 +1,5 @@
package mc.core.network.proto_1_12_2.serializers;
public interface Mapper<F, T> {
T mapping(F fromObject);
}