Moved all GameFiles to CodeWalker.Core

This commit is contained in:
dexyfex
2018-02-25 00:59:00 +11:00
Unverified
parent 375db771ee
commit cbd242b8cc
86 changed files with 1194 additions and 1085 deletions
+20
View File
@@ -0,0 +1,20 @@
using CodeWalker.Properties;
namespace CodeWalker.GameFiles
{
public static class GameFileCacheFactory
{
public static GameFileCache Create()
{
var s = Settings.Default;
return new GameFileCache(s.CacheSize, s.CacheTime, GTAFolder.CurrentGTAFolder, s.DLC, s.EnableMods, s.ExcludeFolders);
}
}
}