Files
MinecraftConsoles/Minecraft.World/Calendar.cpp

19 lines
295 B
C++
Raw Normal View History

2026-03-01 11:00:23 -06:00
#include "stdafx.h"
#include "Calendar.h"
#include <time.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;
}