Renderer/src/main/java/electrosphere/script/ScriptFileChecksumMap.java
austin 6704454ac5
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
script cache busting
2025-04-05 17:19:42 -04:00

38 lines
793 B
Java

package electrosphere.script;
import java.util.HashMap;
import java.util.Map;
/**
* Storage for the script file -> checksum map
*/
public class ScriptFileChecksumMap {
/**
* Stores all loaded files' md5 checksums
*/
Map<String,String> fileChecksumMap = new HashMap<String,String>();
/**
* Stores all loaded files' last modified time
*/
Map<String,String> fileModifyTimeMap = new HashMap<String,String>();
/**
* Gets the file checksum map
* @return The map
*/
public Map<String, String> getFileChecksumMap() {
return fileChecksumMap;
}
/**
* Gets the file last modify map
* @return The map
*/
public Map<String, String> getFileLastModifyMap() {
return fileModifyTimeMap;
}
}