CodeWalker/GameFiles/GameFileCacheFactory.cs
2018-02-25 00:59:00 +11:00

20 lines
365 B
C#

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);
}
}
}