I’ve been using the Data class lately and have found the need to create my own method to clear a savefile (when I wrongly saved a variable). It’d be as easy as
public static function clear(filename:String):void {
Data.load(filename);
_shared.clear();
}
Maybe this can be included in future versions of FP?