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

View File

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