JenkInd export strings function

This commit is contained in:
dexyfex
2017-12-15 00:07:26 +11:00
Unverified
parent 96638b8317
commit b4d577fe84
4 changed files with 61 additions and 6 deletions
+10
View File
@@ -248,6 +248,16 @@ namespace CodeWalker.GameFiles
return res;
}
public static string[] GetAllStrings()
{
string[] res = null;
lock (syncRoot)
{
res = Index.Values.ToArray();
}
return res;
}
}