오늘 부터 케릭터 선택창에서 팅기는 서버 운영자들 주목.
컨텐츠 정보
- 349 조회
- 8 댓글
- 1 추천
- 0 비추천
- 목록
본문
https://gshotgun.notion.site/22808b89f01a800ba4e7f737b55f42f3
팅기는 이유 및 내용은 위 링크를 참고하시고. 아래는 참고 소스 임.
private static final long BASE_TIME_IN_MILLIS_REAL = 1577836800000L;
private final int _time;
private final Calendar _calendar;
private Calendar makeCalendar(long time) {
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
cal.setTimeInMillis(0);
cal.add(Calendar.SECOND, _time);
return cal;
}
팅기는 이유 및 내용은 위 링크를 참고하시고. 아래는 참고 소스 임.
private static final long BASE_TIME_IN_MILLIS_REAL = 1577836800000L;
private final int _time;
private final Calendar _calendar;
private Calendar makeCalendar(long time) {
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
cal.setTimeInMillis(0);
cal.add(Calendar.SECOND, _time);
return cal;
}
관련자료
댓글 8