01 /*
02 *
03 * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
04 *
05 */
06 package demo.sharededitor.ui;
07
08 import java.awt.Image;
09
10 public interface Texturable {
11 void setTexture(Image image);
12
13 void clearTexture();
14 }
|