public void eventsDiscovered(FlatCalendar.TimeObj time, List <FlatCalendar.EventObj> list) { Debug.Log("You have selected a day with: " + list.Count + "events"); for (int i = 0; i < list.Count; i++) { Debug.Log("Event: " + i + " ==> " + "Name: " + list[i].name + " Description: " + list[i].description); } }
public void backHome(FlatCalendar.TimeObj time) { Debug.Log("You have come back at home"); time.print(); }
public void monthUpdated(FlatCalendar.TimeObj time) { Debug.Log("Month has changed"); time.print(); }
public void dayUpdated(FlatCalendar.TimeObj time) { Debug.Log("Day has changed"); time.print(); }