Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Last active August 12, 2021 15:26
Show Gist options
  • Save rdelrosario/c09f27f8d32b84d4664be795dde3206c to your computer and use it in GitHub Desktop.
Save rdelrosario/c09f27f8d32b84d4664be795dde3206c to your computer and use it in GitHub Desktop.
public class MainViewModel
{
public MainViewModel()
{
_videoPlayerStateMachine = new StateMachine<VideoState, VideoTrigger>(CanAutoPlay ? VideoState.Playing: VideoState.Idle);
}
private StateMachine<VideoState, VideoTrigger> _videoPlayerStateMachine;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment