restore API methods intended for other mods

This commit is contained in:
Jesse Plamondon-Willard 2019-01-05 05:06:26 -05:00
parent 7b719c2edc
commit 5c238c5040
No known key found for this signature in database
GPG Key ID: 7D7C8097B62033CE
1 changed files with 13 additions and 0 deletions

View File

@ -222,6 +222,19 @@ namespace StardewSymphonyRemastered.Framework
festivals.Add(name);
}
/// <summary>Custom way to add in event to hijack music.</summary>
public static void addEvent(string id)
{
events.Add(id);
//Do some logic here
}
/// <summary>Add a location to the loctaion list.</summary>
public static void addLocation(string name)
{
locations.Add(name);
}
/// <summary>Get the name of the day of the week from what game day it is.</summary>
public static string getDayOfWeekString()
{