4jcraft/targets/minecraft/world/level/Calendar.cpp
2026-04-01 13:27:58 -05:00

17 lines
294 B
C++

#include <time.h>
#include "Calendar.h"
unsigned int Calendar::GetDayOfMonth() {
time_t t = time(0);
struct tm* now = localtime(&t);
return now->tm_mday;
}
unsigned int Calendar::GetMonth() {
time_t t = time(0);
struct tm* now = localtime(&t);
return now->tm_mon;
}