aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/cinematic/events/CinematicEventListener.java
blob: 9a5f5a6e0be017570355137fee9df161d08dd1df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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);
}