cull(engine-cleanup): pass-8 phase-2 cascade round 1 after GachaUI stub

This commit is contained in:
gamer147
2026-07-03 22:25:44 -04:00
parent a0533bf2e3
commit e3b8b8dc0c
69 changed files with 4 additions and 6301 deletions

View File

@@ -43,22 +43,4 @@ public class RemainTime
LocalTime = ConvertTime.ToLocal(dateTime).ToString();
TimeInLocal = ConvertTime.ToLocalByDateTime(dateTime);
}
public string GetShowText(string minuteId, string hourId, string dayId)
{
SystemText systemText = Data.SystemText;
string text = null;
if (Second < 3600)
{
int num = Second / 60 + 1;
return systemText.Get(minuteId, num.ToString());
}
if (Second < 86400)
{
int num2 = Second / 3600;
return systemText.Get(hourId, num2.ToString());
}
int num3 = Second / 86400;
return systemText.Get(dayId, num3.ToString());
}
}