1 2 package org.catacomb.interlish.structure; 3 4 5 public interface Updatable { 6 7 void update(int type); 8 9 } 10