summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/SensorFrameHandler.java
blob: fc3a4df1a699894e49396b73e3bdc693616bf96c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package NET.worlds.scape;

import java.io.IOException;

class SensorFrameHandler extends SuperRoot {
   @Override
   public void saveState(Saver s) throws IOException {
      assert false;
   }

   @Override
   public void restoreState(Restorer r) throws IOException, TooNewException {
      RunningActionHandler a = new RunningActionHandler();
      r.replace(this, a);
      a.restoreState(r);
   }
}