LNXSDK/Kha/Backends/Empty/kha/Storage.hx
2025-01-22 16:18:30 +01:00

16 lines
297 B
Haxe

package kha;
import haxe.io.Bytes;
import haxe.io.BytesBuffer;
import haxe.io.BytesData;
class Storage {
public static function namedFile(name: String): StorageFile {
return null;
}
public static function defaultFile(): StorageFile {
return namedFile("default.kha");
}
}