2017-09-05 19:13:42 +08:00
|
|
|
|
using StardewModdingAPI;
|
2017-09-12 14:39:59 +08:00
|
|
|
|
using StardustCore.ModInfo;
|
2017-09-05 19:13:42 +08:00
|
|
|
|
using System;
|
2017-07-14 11:27:48 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-09-05 19:13:42 +08:00
|
|
|
|
namespace StardustCore
|
2017-07-14 11:27:48 +08:00
|
|
|
|
{
|
2017-09-05 19:13:42 +08:00
|
|
|
|
public class ModCore : Mod
|
2017-07-14 11:27:48 +08:00
|
|
|
|
{
|
2017-09-12 09:35:31 +08:00
|
|
|
|
public static IModHelper ModHelper;
|
|
|
|
|
public static IMonitor ModMonitor;
|
|
|
|
|
public override void Entry(IModHelper helper)
|
|
|
|
|
{
|
|
|
|
|
ModHelper = helper;
|
|
|
|
|
ModMonitor = this.Monitor;
|
2017-09-12 14:39:59 +08:00
|
|
|
|
|
|
|
|
|
StardewModdingAPI.Events.GraphicsEvents.OnPostRenderGuiEvent += Metadata.GameEvents_UpdateTick;
|
2017-09-12 09:35:31 +08:00
|
|
|
|
}
|
2017-07-14 11:27:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|