/**
 * These are a subset of animations from the "001.000_player.anm2" file.
 *
 * These are listed in order of their appearance from top to bottom.
 */
export enum PlayerItemAnimation {
  PICKUP = "Pickup",
  LIFT_ITEM = "LiftItem",
  HIDE_ITEM = "HideItem",
  USE_ITEM = "UseItem",
  PICKUP_WALK_DOWN = "PickupWalkDown",
  PICKUP_WALK_LEFT = "PickupWalkLeft",
  PICKUP_WALK_UP = "PickupWalkUp",
  PICKUP_WALK_RIGHT = "PickupWalkRight",
}
