Renamed MudEngine.FileSystem folder to MudEngine.DAL (Data Access Layer)

Deleted the Attributes folder as it is no longer used.
Moved Server.cs from Networking to Communication folder.

Classes all still reside within their original namespaces, just migrating files into their new folders.  Namespace migration will take place afterwards.
This commit is contained in:
Scionwest_cp 2011-09-27 18:44:18 -07:00
parent 98e01dfd98
commit 373b8b66b8
6 changed files with 6 additions and 7 deletions

View file

@ -1,57 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MudEngine.FileSystem
{
public struct SaveDataPaths
{
public String Players
{
get
{
return _Players;
}
set
{
_Players = value;
}
}
public String Environment
{
get
{
return _Environment;
}
set
{
_Environment = value;
}
}
public String Scripts
{
get
{
return _Scripts;
}
set
{
_Scripts = value;
}
}
private String _Players;
private String _Environment;
private String _Scripts;
public SaveDataPaths(String environment, String players, String scripts)
{
_Players = players;
_Environment = environment;
_Scripts = scripts;
}
}
}