Added Some Functions. _lua looks good!

This commit is contained in:
Steven French 2012-01-05 01:49:49 +13:00
parent 332fce2eb7
commit a1d4328ec4
2 changed files with 38 additions and 5 deletions

View file

@ -24,11 +24,22 @@ using System.Net.Sockets;
using System.Security.Cryptography;
using System.Text;
using Terraria;
using TShockAPI.LuaSystem;
namespace TShockAPI
{
public class Utils
{
LuaLoader Parent; //For Lua Functions that require the LuaLoader
public Utils()
{
}
public Utils(LuaLoader parent)
{
Parent = parent;
}
public Random Random = new Random();
//private static List<Group> groups = new List<Group>();