aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/audio/SeekableStream.java
blob: bb5b9e45dd05dbd66214578274c32f5247455c5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.jme3.audio;

/**
 *
 * @author Nehon
 */
public interface SeekableStream{
    
    public void setTime(float time);
    
}