io.github.sinri.drydock.naval.base.Boat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DryDock Show documentation
Show all versions of DryDock Show documentation
Prototype Library for Keel Based Java Projects.
package io.github.sinri.drydock.naval.base;
import io.github.sinri.drydock.common.CommonUnit;
/**
* @since 1.1.0
*/
public interface Boat extends CommonUnit {
void launch();
void shipwreck(Throwable throwable);
void sink();
}