TShock/TShockAPI/DB/GroupManager.cs
Twitchy cb7033d89c Adds UserManager to sql
Changes the way Warps and Regions are stored
A few other minor tweaks
2011-07-09 16:33:07 +12:00

24 lines
447 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using Community.CsharpSqlite.SQLiteClient;
namespace TShockAPI.DB
{
public class GroupManager
{
private IDbConnection database;
public GroupManager(IDbConnection db)
{
database = db;
}
public bool GroupExists(string group)
{
return true;
}
}
}