com.ardor3d.util.export.Savable Maven / Gradle / Ivy
/**
* Copyright (c) 2008-2012 Ardor Labs, Inc.
*
* This file is part of Ardor3D.
*
* Ardor3D is free software: you can redistribute it and/or modify it
* under the terms of its license which may be found in the accompanying
* LICENSE file or at .
*/
package com.ardor3d.util.export;
import java.io.IOException;
public interface Savable {
void write(OutputCapsule capsule) throws IOException;
void read(InputCapsule capsule) throws IOException;
Class> getClassTag();
}