1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 
6 package com.jme3.cinematic.events;
7 
8 /**
9  *
10  * @author Nehon
11  */
12 public interface CinematicEventListener {
13 
onPlay(CinematicEvent cinematic)14     public void onPlay(CinematicEvent cinematic);
onPause(CinematicEvent cinematic)15     public void onPause(CinematicEvent cinematic);
onStop(CinematicEvent cinematic)16     public void onStop(CinematicEvent cinematic);
17 }
18