forked from SocietyNiu/VocabValley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModEntry.cs
More file actions
31 lines (29 loc) · 779 Bytes
/
Copy pathModEntry.cs
File metadata and controls
31 lines (29 loc) · 779 Bytes
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
27
28
29
30
31
using StardewModdingAPI;
using StardewModdingAPI.Events;
using StardewValley;
using StardewValley.Menus;
using xTile.Tiles;
using SObject = StardewValley.Object;
using StardewValley.GameData.Objects;
using VocabValley.UI;
using VocabValley.Utils;
using Microsoft.Xna.Framework;
using VocabValley.Core.Statistics;
using VocabValley.Core.Setting;
using VocabValley.Core.Saving;
using VocabValley.Core.Reward;
using VocabValley.Core.Points;
using VocabValley.Core.Model;
using VocabValley.Core.Level;
using VocabValley.Core;
namespace VocabValley
{
public class ModEntry : Mod
{
private CoreManager coreManager = null;
public override void Entry(IModHelper helper)
{
coreManager = new CoreManager(helper, Monitor);
}
}
}