package me.bvn13.fsm; /** * State handler * @param */ @FunctionalInterface public interface StateHandler { void handle(T fms); }