/** * */ package com.github.cbpos1989.examples.inheritance; /** * Interface that forces the implementation of spawn method * * @author Colm O'Sullivan * */ public interface Spawnable { public abstract void spawn(); }