namespace ET { public static class GameUtil { // 传入真实时间,转化为游戏的天数 public static int GetDaysOfTime(float time) { return (int)time; } } }