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.
16 lines
216 B
16 lines
216 B
11 years ago
|
package mightypork.utils.control;
|
||
11 years ago
|
|
||
11 years ago
|
|
||
11 years ago
|
/**
|
||
|
* Object that can be destroyed (free resources etc)
|
||
|
*
|
||
|
* @author MightyPork
|
||
|
*/
|
||
|
public interface Destroyable {
|
||
11 years ago
|
|
||
11 years ago
|
/**
|
||
|
* Destroy this object
|
||
|
*/
|
||
|
public void destroy();
|
||
|
}
|