18 lines
472 B
C#
18 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Terraria;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Emiliasmod
|
|
{
|
|
// 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 Emiliasmod : Mod
|
|
{
|
|
//need to load all of the mods here
|
|
}
|
|
}
|