You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
255 B
24 lines
255 B
11 years ago
|
package mightypork.utils.control.timing;
|
||
11 years ago
|
|
||
11 years ago
|
|
||
11 years ago
|
public interface Pauseable {
|
||
11 years ago
|
|
||
11 years ago
|
/**
|
||
|
* Pause operation
|
||
|
*/
|
||
|
public void pause();
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
/**
|
||
|
* Resume operation
|
||
|
*/
|
||
|
public void resume();
|
||
11 years ago
|
|
||
|
|
||
11 years ago
|
/**
|
||
|
* @return paused state
|
||
|
*/
|
||
|
public boolean isPaused();
|
||
11 years ago
|
|
||
11 years ago
|
}
|