proper final change

This commit is contained in:
Matthew 2025-08-16 09:36:52 +10:00
parent fce5f7ee8f
commit 5dd2a43799

View File

@ -1,10 +1,12 @@
import std.file;
import std.string;
import std.path;
import std.stdio;
void main(string[] argv)
version(VULKAN_CODEGEN)
{
import std.file;
import std.string;
import std.path;
import std.stdio;
void main(string[] argv)
{
assert(argv.length > 1, "No argument provided");
ubyte[] shader_bytes = cast(ubyte[])read(argv[1]);
@ -28,4 +30,6 @@ void main(string[] argv)
f.writeln("\n];");
f.close();
}
}