Hi All,
Just wondering if anyone has done something similar. In my RPG I want to track time but I don’t want to use a real Date or Calendar. I want to have a custom set of months and days of week.
example:
public enum DaysOfWeek {
SolDay, MoonDay, SkyDay, WoodDay, StormDay, FreeDay, CronDay;
}
public enum MonthOfYear {
Janus, Februa, Marz, Aprilis, Maia, Juno, Quintilis, Numa, Septis, Octon, Novon, Decton;
}
Amusing 30 days a month and 7 days a week and 24 hours in a day.
Has anyone written something similar? My idea was to have a tick method that could take a minute as integer and increment the current date/time. I would call that method when the user moves.