01 /*
02 *
03 * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
04 *
05 */
06 package demo.sharededitor.ui;
07
08 public interface FillStyleConsts {
09 public static int FILLSTYLE_TRANSPARENT = 0;
10 public static int FILLSTYLE_SOLID = 1;
11 public static int FILLSTYLE_TEXTURED = 2;
12 }
|