diff options
author | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-27 06:40:09 -0400 |
---|---|---|
committer | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-27 06:40:09 -0400 |
commit | a387d024f074074d61955eb52fb83002d8440bbb (patch) | |
tree | c7e8d03a7c2f86c0b5d34353facd8ef6d5fc23d5 /StardewModdingAPI/Events | |
parent | 2cce7c2d27d0d678563d35c69f6879168bff53e4 (diff) | |
download | SMAPI-a387d024f074074d61955eb52fb83002d8440bbb.tar.gz SMAPI-a387d024f074074d61955eb52fb83002d8440bbb.tar.bz2 SMAPI-a387d024f074074d61955eb52fb83002d8440bbb.zip |
updates
Diffstat (limited to 'StardewModdingAPI/Events')
-rw-r--r-- | StardewModdingAPI/Events/Time.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/StardewModdingAPI/Events/Time.cs b/StardewModdingAPI/Events/Time.cs index f60fa0c4..39ca642a 100644 --- a/StardewModdingAPI/Events/Time.cs +++ b/StardewModdingAPI/Events/Time.cs @@ -8,6 +8,10 @@ namespace StardewModdingAPI.Events public static event EventHandler<EventArgsIntChanged> DayOfMonthChanged = delegate { };
public static event EventHandler<EventArgsIntChanged> YearOfGameChanged = delegate { };
public static event EventHandler<EventArgsStringChanged> SeasonOfYearChanged = delegate { };
+
+ /// <summary>
+ /// Occurs when Game1.newDay changes. True directly before saving, and False directly after.
+ /// </summary>
public static event EventHandler<EventArgsNewDay> OnNewDay = delegate { };
internal static void InvokeTimeOfDayChanged(int priorInt, int newInt)
|