Skip to content

Instantly share code, notes, and snippets.

@xdegtyarev
Created August 5, 2014 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xdegtyarev/7180b1a2365af4222766 to your computer and use it in GitHub Desktop.
Save xdegtyarev/7180b1a2365af4222766 to your computer and use it in GitHub Desktop.
FSM example: launching fsm
public class Robot {
public FSM fsm;
void Start() {
fsm = new FSM( this );
}
void Update() {
fsm.Update();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment