package net.fourbytes.shadow.systems; /** * INextDay is an interface to easily enforce the nextDay() method on children classes / interfaces. * It also is a typing interface. */ public interface INextDay { public void nextDay(); }