mirror of
https://github.com/koloml/vs-manual-cartography.git
synced 2026-06-23 18:22:21 +00:00
Initial commit from Vintage Story mod template
This commit adds dummy compass item wich will just send the angle into the chat when you click RMB on it.
This commit is contained in:
13
ManualCartography/ManualCartographyModSystem.cs
Normal file
13
ManualCartography/ManualCartographyModSystem.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using ManualCartography.Items;
|
||||
using Vintagestory.API.Common;
|
||||
using Vintagestory.API.Server;
|
||||
|
||||
namespace ManualCartography;
|
||||
|
||||
public class ManualCartographyModSystem : ModSystem
|
||||
{
|
||||
public override void Start(ICoreAPI api)
|
||||
{
|
||||
api.RegisterItemClass(Mod.Info.ModID + ".itemcompass", typeof(ItemCompass));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user