Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/gamecore/util/ion/IonObjBundled.java

18 lines
265 B

package mightypork.gamecore.util.ion;
import java.io.IOException;
/**
* Bundled ion object
*
* @author MightyPork
*/
public interface IonObjBundled {
void load(IonBundle bundle) throws IOException;
void save(IonBundle bundle) throws IOException;
}