muddesigner/MudEngine/FileSystem/SaveDataPaths.cs
Scionwest_cp 607bd673a5 MudEngine:
- Sending messages to the client from the server is now an added feature. Use Game.SendMessage()
 - Added Load and Save commands for players.
 - Added Missing SaveDataPaths struct file.
2010-07-30 19:31:49 -07:00

13 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MudEngine.FileSystem
{
public struct SaveDataPaths
{
public string Players { get; set; }
public string Environment { get; set; }
}
}