includes/hex: Added hex::core::add_virtual_file (#247)

This commit is contained in:
Marijn Kneppers
2024-05-12 23:38:57 +02:00
committed by GitHub
parent 9f7cdded6a
commit 9c6bfeb50f

View File

@@ -37,4 +37,14 @@ namespace auto hex::core {
return result;
};
/**
Add a file to the Virtual Filesystem
@param path The name of the file
@param pattern The pattern associated with the file
*/
fn add_virtual_file(str path, auto pattern)
{
builtin::hex::core::add_virtual_file(path, pattern);
}
}