Terraria.ModLoader.MountLoader.CustomBodyFrame C# (CSharp) Method

CustomBodyFrame() static private method

static private CustomBodyFrame ( Mount mount ) : bool
mount Terraria.Mount
return bool
		internal static bool CustomBodyFrame(Mount.MountData mount)
		{
			if (IsModMountData(mount) && mount.modMountData.CustomBodyFrame())
			{
				return true;
			}
			return false;
		}
		public static void UseAbility(Player player, Vector2 mousePosition, bool toggleOn)