blob: 9a5f5a6e0be017570355137fee9df161d08dd1df [file] [log] [blame]
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.jme3.cinematic.events;
/**
*
* @author Nehon
*/
public interface CinematicEventListener {
public void onPlay(CinematicEvent cinematic);
public void onPause(CinematicEvent cinematic);
public void onStop(CinematicEvent cinematic);
}