Added GetDirSep

pull/2/head
Francesco Bertolaccini 2016-01-28 22:02:22 +01:00
parent 8c52025470
commit ba047f5003
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,11 @@ namespace Test
{
Console.WriteLine(PhysFS.PhysFS.GetLastError());
}
static void GetDirSeparator(string[] args)
{
Console.WriteLine(PhysFS.PhysFS.GetDirSeparator());
}
#endregion
static void Main(string[] args)
@ -149,6 +154,7 @@ namespace Test
commands.Add("mount", Mount);
commands.Add("enumerate", Enumerate);
commands.Add("ls", Enumerate);
commands.Add("getdirsep", GetDirSeparator);
while (true)
{