blob: 83b7c77ae0888bf6ff1a9397784258c03a7b280c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package bjc.utils.esodata;
public interface DoubleSided {
/**
* Flips the object.
*
* The active side becomes inactive, and the inactive side becomes
* active.
*/
void flip();
/**
* Check which side of the object is active;
*
* @return True if the front side is active, false otherwise.
*/
boolean currentSide();
}
|