Added sample project files to make it easier for people to get started.

This commit is contained in:
2021-12-06 15:34:28 +09:00
parent 036de2d8d0
commit 2785a1372e
3 changed files with 54 additions and 0 deletions

20
src/ModEntry.cs Normal file
View 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! :-)");
}
}
}