mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-20 11:14:35 +00:00
13 lines
194 B
Java
13 lines
194 B
Java
package com.volmit.iris.util;
|
|
|
|
import java.io.File;
|
|
|
|
public interface Converter
|
|
{
|
|
public String getInExtension();
|
|
|
|
public String getOutExtension();
|
|
|
|
public void convert(File in, File out);
|
|
}
|