mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-22 20:25:56 +00:00
13 lines
272 B
Java
13 lines
272 B
Java
package com.volmit.iris.util;
|
|
|
|
import java.io.DataInputStream;
|
|
import java.io.DataOutputStream;
|
|
import java.io.IOException;
|
|
|
|
public interface Writable
|
|
{
|
|
public void write(DataOutputStream o) throws IOException;
|
|
|
|
public void read(DataInputStream i) throws IOException;
|
|
}
|