blob: 913fc96ad65e94472b5b2547144035b540fa01e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package NET.worlds.scape;
import java.io.IOException;
class Facer extends SwitchableBehavior {
@Override
public void saveState(Saver s) throws IOException {
}
@Override
public void restoreState(Restorer r) throws IOException {
System.out.println("WARNING! Facers are obsolete. Use 1-image Holograms instead.");
}
}
|