Initial commit
This commit is contained in:
8
src/main.zig
Normal file
8
src/main.zig
Normal file
@@ -0,0 +1,8 @@
|
||||
const std = @import("std");
|
||||
const Game = @import("game.zig");
|
||||
|
||||
pub fn main() !void {
|
||||
var game = try Game.init();
|
||||
defer game.deinit();
|
||||
try game.run();
|
||||
}
|
Reference in New Issue
Block a user