icbm/src/main/java/dan200/computercraft/api/turtle/TurtleAnimation.java

23 lines
522 B
Java
Raw Normal View History

2022-11-09 22:15:45 +01:00
/**
* This file is part of the public ComputerCraft API - http://www.computercraft.info
2022-11-09 22:16:55 +01:00
* Copyright Daniel Ratcliffe, 2011-2015. This API may be redistributed unmodified and in
* full only. For help using the API, and posting your mods, visit the forums at
* computercraft.info.
2022-11-09 22:15:45 +01:00
*/
package dan200.computercraft.api.turtle;
2022-11-09 22:16:55 +01:00
public enum TurtleAnimation {
2022-11-09 22:15:45 +01:00
None,
MoveForward,
MoveBack,
MoveUp,
MoveDown,
TurnLeft,
TurnRight,
SwingLeftTool,
SwingRightTool,
Wait,
ShortWait,
}