commit f6ad8f22970c0d29dd1ba17ec7933411e38a11db Author: Muhammad Nauman Raza Date: Tue Nov 5 21:57:53 2024 +0000 chore: initialise mod diff --git a/Localization/en-US_Mods.continuity.hjson b/Localization/en-US_Mods.continuity.hjson new file mode 100644 index 0000000..f0d8f3d --- /dev/null +++ b/Localization/en-US_Mods.continuity.hjson @@ -0,0 +1,2 @@ +# This file will automatically update with entries for new content after a build and reload. + diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..494048a --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,16 @@ +{ + "profiles": { + "Terraria": { + "commandName": "Executable", + "executablePath": "$(DotNetName)", + "commandLineArgs": "$(tMLPath)", + "workingDirectory": "$(tMLSteamPath)" + }, + "TerrariaServer": { + "commandName": "Executable", + "executablePath": "$(DotNetName)", + "commandLineArgs": "$(tMLServerPath)", + "workingDirectory": "$(tMLSteamPath)" + } + } +} \ No newline at end of file diff --git a/build.txt b/build.txt new file mode 100644 index 0000000..4d912ae --- /dev/null +++ b/build.txt @@ -0,0 +1,3 @@ +displayName = Continuity +author = The Continuity Team +version = 0.1 \ No newline at end of file diff --git a/continuity.cs b/continuity.cs new file mode 100644 index 0000000..3b34c69 --- /dev/null +++ b/continuity.cs @@ -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 + { + + } +} diff --git a/continuity.csproj b/continuity.csproj new file mode 100644 index 0000000..726c74f --- /dev/null +++ b/continuity.csproj @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/description.txt b/description.txt new file mode 100644 index 0000000..0e95bc7 --- /dev/null +++ b/description.txt @@ -0,0 +1 @@ +Modify this file with a description of your mod. \ No newline at end of file diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..9e0cf81 Binary files /dev/null and b/icon.png differ