mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 22:12:55 +00:00
17 lines
333 B
Java
17 lines
333 B
Java
|
package me.impy.aegis.ext;
|
||
|
|
||
|
import java.io.InputStream;
|
||
|
import java.util.List;
|
||
|
|
||
|
import me.impy.aegis.KeyProfile;
|
||
|
|
||
|
public abstract class KeyConverter {
|
||
|
protected InputStream _stream;
|
||
|
|
||
|
public KeyConverter(InputStream stream) {
|
||
|
_stream = stream;
|
||
|
}
|
||
|
|
||
|
public abstract List<KeyProfile> convert() throws Exception;
|
||
|
}
|