mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-20 18:29:25 +01:00
Use path+filesize instead of xxHash for frame count caching
This commit is contained in:
20
Code/Data/PseudoUniqueFile.cs
Normal file
20
Code/Data/PseudoUniqueFile.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Flowframes.Data
|
||||
{
|
||||
class PseudoUniqueFile
|
||||
{
|
||||
public string path;
|
||||
public long filesize;
|
||||
|
||||
public PseudoUniqueFile (string pathArg, long filesizeArg)
|
||||
{
|
||||
path = pathArg;
|
||||
filesize = filesizeArg;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user