Home | History | Annotate | Download | only in events
      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 
     14     public void onPlay(CinematicEvent cinematic);
     15     public void onPause(CinematicEvent cinematic);
     16     public void onStop(CinematicEvent cinematic);
     17 }
     18