package de.lessvoid.nifty.slick2d; import javax.annotation.Nonnull; /** * This interface is applied to classes that use the Nifty-Carrier. * * @author Martin Karing >nitram@illarion.org< */ public interface NiftyCarrierUser { /** * Set the carrier that is supposed to be used by this carrier user. * * @param carrier the carrier to use */ void setCarrier(@Nonnull NiftyCarrier carrier); }