Esempio n. 1
0
 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);
     }
 }
Esempio n. 2
0
 public void backHome(FlatCalendar.TimeObj time)
 {
     Debug.Log("You have come back at home");
     time.print();
 }
Esempio n. 3
0
 public void monthUpdated(FlatCalendar.TimeObj time)
 {
     Debug.Log("Month has changed");
     time.print();
 }
Esempio n. 4
0
 public void dayUpdated(FlatCalendar.TimeObj time)
 {
     Debug.Log("Day has changed");
     time.print();
 }