new documentation and some fixes in code
This commit is contained in:
@@ -396,7 +396,6 @@ namespace Barotrauma
|
||||
string name = subElement.GetAttributeString("name", null);
|
||||
enabledPackages.Add(name);
|
||||
}
|
||||
|
||||
return enabledPackages;
|
||||
}
|
||||
}
|
||||
@@ -469,6 +468,11 @@ namespace Barotrauma
|
||||
return Directory.Exists(path);
|
||||
}
|
||||
|
||||
public static string[] GetFiles(string path)
|
||||
{
|
||||
return Directory.GetFiles(path);
|
||||
}
|
||||
|
||||
public static string[] GetDirectories(string path)
|
||||
{
|
||||
return Directory.GetDirectories(path);
|
||||
|
||||
Reference in New Issue
Block a user