restore API methods intended for other mods
This commit is contained in:
parent
7b719c2edc
commit
5c238c5040
|
@ -222,6 +222,19 @@ namespace StardewSymphonyRemastered.Framework
|
||||||
festivals.Add(name);
|
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>
|
/// <summary>Get the name of the day of the week from what game day it is.</summary>
|
||||||
public static string getDayOfWeekString()
|
public static string getDayOfWeekString()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue