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.
57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
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;
|
|
}
|
|
}
|
|
}
|