FilterDemoFramework.SimplePlayEngine.Done C# (CSharp) Method

Done() private method

private Done ( System.Action completionHandler ) : void
completionHandler System.Action
return void
		void Done (Action completionHandler)
		{
			if (isPlaying)
				player.Play ();

			if (completionHandler != null)
				completionHandler ();
		}
	}