Skip to content

Instantly share code, notes, and snippets.

@xdegtyarev
Created August 5, 2014 13:47
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/5038f8ef57b7db7f54c6 to your computer and use it in GitHub Desktop.
Save xdegtyarev/5038f8ef57b7db7f54c6 to your computer and use it in GitHub Desktop.
FSM example: State
public class State {
public virtual void Enter( Robot entity );
public virtual void Execute( Robot entity );
public virtual void Exit( Robot entity );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment