Files
narya/src/java/com/threerings/cast/StandardActions.java
T
Michael Bayne c25741d8e6 Bundles! Have component bundles largely working. Wrote test code and ANT
tasks and XML parsing rule sets all the good stuff. Rewired up all the
cast code to be amenable to bundling and did some other revamping.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@640 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-11-27 08:09:35 +00:00

20 lines
629 B
Java

//
// $Id: StandardActions.java,v 1.1 2001/11/27 08:09:35 mdb Exp $
package com.threerings.cast;
/**
* Actions are referenced by name and this interface defines constants for
* two standard actions: standing and walking. Because character sprites
* follow paths, it is helpful for them to take care of switching between
* the standing and walking actions automatically.
*/
public interface StandardActions
{
/** The name of the standard standing action. */
public static final String STANDING = "standing";
/** The name of the standard walking action. */
public static final String WALKING = "walking";
}