Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
295 B · 19 lines
C++
at master
12345678910111213141516171819#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;}