0

первые намётки сериализации Text

This commit is contained in:
2020-05-12 12:20:22 +03:00
parent 95930c3aa8
commit 6785f59de9
5 changed files with 58 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
package mc.protocol.converter;
public interface Converter<S, T> {
T convert(S source);
}