cull(engine-cleanup): pass-8 phase-2 cascade round 1 after GachaUI stub
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user