Initial commit

This commit is contained in:
CreativeMD 2018-03-07 12:28:52 +01:00 committed by CreativeMD
parent 83ed261e24
commit 76ca9b8565
9 changed files with 433 additions and 0 deletions

View file

@ -0,0 +1,17 @@
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!");
}
}
}