mirror of
https://github.com/anegostudios/vsmodtemplate
synced 2025-07-06 21:34:35 -07:00
Initial commit
This commit is contained in:
parent
83ed261e24
commit
76ca9b8565
9 changed files with 433 additions and 0 deletions
17
mods/MyGoldBlockName/Class1.cs
Normal file
17
mods/MyGoldBlockName/Class1.cs
Normal 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!");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue