Files
narya/src/java/com/threerings/media/MediaConstants.java
T
Michael Bayne cc6a9d00ef Major low-level rendering rethink. There will be much follow-on cleanup.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1286 542714f4-19e9-0310-aa3c-eee0fc999fb1
2002-04-23 01:16:28 +00:00

20 lines
502 B
Java

//
// $Id: MediaConstants.java,v 1.1 2002/04/23 01:16:27 mdb Exp $
package com.threerings.media;
/**
* Constants specific to the media package.
*/
public interface MediaConstants
{
/** Identifies the back "layer" of sprites and animations. */
public static final int BACK = 1;
/** Identifies the front "layer" of sprites and animations. */
public static final int FRONT = 2;
/** Identifies the all "layers" of sprites and animations. */
public static final int ALL = 3;
}