chore: initialise mod
This commit is contained in:
commit
f6ad8f2297
7 changed files with 53 additions and 0 deletions
2
Localization/en-US_Mods.continuity.hjson
Normal file
2
Localization/en-US_Mods.continuity.hjson
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# This file will automatically update with entries for new content after a build and reload.
|
||||||
|
|
16
Properties/launchSettings.json
Normal file
16
Properties/launchSettings.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"profiles": {
|
||||||
|
"Terraria": {
|
||||||
|
"commandName": "Executable",
|
||||||
|
"executablePath": "$(DotNetName)",
|
||||||
|
"commandLineArgs": "$(tMLPath)",
|
||||||
|
"workingDirectory": "$(tMLSteamPath)"
|
||||||
|
},
|
||||||
|
"TerrariaServer": {
|
||||||
|
"commandName": "Executable",
|
||||||
|
"executablePath": "$(DotNetName)",
|
||||||
|
"commandLineArgs": "$(tMLServerPath)",
|
||||||
|
"workingDirectory": "$(tMLSteamPath)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
3
build.txt
Normal file
3
build.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
displayName = Continuity
|
||||||
|
author = The Continuity Team
|
||||||
|
version = 0.1
|
15
continuity.cs
Normal file
15
continuity.cs
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Terraria.ModLoader;
|
||||||
|
|
||||||
|
namespace continuity
|
||||||
|
{
|
||||||
|
// Please read https://github.com/tModLoader/tModLoader/wiki/Basic-tModLoader-Modding-Guide#mod-skeleton-contents for more information about the various files in a mod.
|
||||||
|
public class continuity : Mod
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
16
continuity.csproj
Normal file
16
continuity.csproj
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<!-- Import tModLoader mod properties -->
|
||||||
|
<Import Project="..\tModLoader.targets" />
|
||||||
|
|
||||||
|
<!-- General -->
|
||||||
|
<PropertyGroup>
|
||||||
|
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- References -->
|
||||||
|
<ItemGroup>
|
||||||
|
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
1
description.txt
Normal file
1
description.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Modify this file with a description of your mod.
|
BIN
icon.png
Normal file
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 504 B |
Reference in a new issue