You've already forked stardew-valley-mods-devcontainer
Added sample project files to make it easier for people to get started.
This commit is contained in:
20
src/ModEntry.cs
Normal file
20
src/ModEntry.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using StardewModdingAPI;
|
||||
|
||||
namespace jibsaramnim.sdv.mods.SampleProject
|
||||
{
|
||||
/// <summary>The mod entry point.</summary>
|
||||
internal class ModEntry : Mod
|
||||
{
|
||||
|
||||
/*********
|
||||
** 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>
|
||||
public override void Entry(IModHelper helper)
|
||||
{
|
||||
this.Monitor.Log("Hello, World! :-)");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user