cc6a9d00ef
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1286 542714f4-19e9-0310-aa3c-eee0fc999fb1
20 lines
502 B
Java
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;
|
|
}
|