mirror of
https://github.com/anegostudios/vsmodtemplate
synced 2025-07-05 21:04:35 -07:00
17 lines
291 B
C#
17 lines
291 B
C#
using System;
|
|
using Vintagestory.API.Common;
|
|
|
|
namespace ClassLibrary1
|
|
{
|
|
|
|
public class MyTestMod : ModBase
|
|
{
|
|
|
|
public override void Start(ICoreAPI api)
|
|
{
|
|
base.Start(api);
|
|
Console.Write("It works and can be debugged!");
|
|
}
|
|
}
|
|
|
|
}
|