blob: 35ac7c0f86993ffadc757e659dc8467459375e85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
namespace StardewModdingAPI
{
/// <summary>The implementation for a Stardew Valley mod.</summary>
public interface IMod
{
/*********
** Accessors
*********/
/// <summary>Provides simplified APIs for writing mods.</summary>
IModHelper Helper { get; }
/// <summary>Writes messages to the console and log file.</summary>
IMonitor Monitor { get; }
/// <summary>The mod's manifest.</summary>
IManifest ModManifest { get; }
/*********
** Public methods
*********/
/// <summary>The mod entry point, called after the mod is first loaded.</summary>
/// <param name="helper">Provides simplified APIs for writing mods.</param>
void Entry(IModHelper helper);
}
}
|