This commit is contained in:
2026-05-07 18:45:37 +02:00
parent 8cf52dafd1
commit 4a30e2abf4
2 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@ -17,3 +17,4 @@ zig-out/
/build-*/ /build-*/
/docgen_tmp/ /docgen_tmp/
.vscode

View File

@ -37,7 +37,6 @@ pub fn main(init: std.process.Init) anyerror!void {
const frugBurp = try rl.loadSound("resources/burp.mp3"); const frugBurp = try rl.loadSound("resources/burp.mp3");
defer rl.unloadSound(frugBurp); defer rl.unloadSound(frugBurp);
rl.setTargetFPS(60); rl.setTargetFPS(60);
const frug = Frug.init(); const frug = Frug.init();
@ -52,6 +51,6 @@ pub fn main(init: std.process.Init) anyerror!void {
frug.draw(); frug.draw();
rl.drawText("FRUGG!", 100, 100, 40, .green); rl.drawText("FRUGG!", 10, 10, 40, .green);
} }
} }