1   package fi.jyu.mit.graphics;
2   
3   /**
4    * Vaatimukset luokalle joka voi toimia isäntänä Space-luokan oliolle.
5    * @author vesal
6    */
7   public interface SpaceParent extends Transformable {
8       
9       /**
10       * Piirtää olion uudelleen
11       */
12      void redraw();
13  }
14