diff --git a/Test/Program.cs b/Test/Program.cs index 99a8d15..31a1d96 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -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) {