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.
This commit is contained in:
parent
4be5a831b1
commit
607bd673a5
7 changed files with 122 additions and 1 deletions
13
MudEngine/FileSystem/SaveDataPaths.cs
Normal file
13
MudEngine/FileSystem/SaveDataPaths.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue