State Interface
An anonymous type representing a state
interface State
{
name: string;
pr: number;
color: number;
}
#color
The color of the state (0 to 15)
color: number;
#name
The name of the state
name: string;
The zero based program number of the state
pr: number;