-
Notifications
You must be signed in to change notification settings - Fork 1
StateName
Johan Vandegriff edited this page Dec 16, 2016
·
1 revision
The StateName interface is meant to be implemented by an enum which contains the names of all the states you want to set up.
ftc/electronvolts/statemachine/StateName.java
package ftc.electronvolts.statemachine;
/**
* This file was made by the electronVolts, FTC team 7393
*
* This class is meant to be implemented with an enum containing the list of
* state names.
*/
public interface StateName {
/**
* @return Returns the name for telemetry purposes.
*/
String name();
}