first commit
This commit is contained in:
17
NitroxModel/Platforms/OS/Unix/UnixFileSystem.cs
Normal file
17
NitroxModel/Platforms/OS/Unix/UnixFileSystem.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
using NitroxModel.Platforms.OS.Shared;
|
||||
|
||||
namespace NitroxModel.Platforms.OS.Unix;
|
||||
|
||||
public sealed class UnixFileSystem : FileSystem
|
||||
{
|
||||
public override IEnumerable<string> GetDefaultPrograms(string file)
|
||||
{
|
||||
yield return "xdg-open";
|
||||
}
|
||||
|
||||
public override bool SetFullAccessToCurrentUser(string directory)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user