public static bool ShowProgress(List <string> paramList)
    {
        if (paramList == null || paramList.Count != 3)
        {
            return(false);
        }

        BattleUIModule module = ModuleManager.Instance.FindModule <BattleUIModule>();

        module.ShowProgress(int.Parse(paramList[0]), paramList[1], float.Parse(paramList[2]));

        return(true);
    }