CodeWalker/GameFiles/GameFileCacheFactory.cs

20 lines
365 B
C#
Raw Normal View History

2018-02-24 21:59:00 +08:00

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