package bjc.utils.cli.fds; /** * A command attached to an FDS interface. * * @author bjculkin * * @param * The state type of the interface. */ @FunctionalInterface public interface FDSCommand { /** * Run this command. * * @param state * The current FDS state. */ void run(FDSState state); }