summaryrefslogtreecommitdiff
path: root/src/main.zig
blob: 4a5c92cee170116eb8393f98f4d2c982748fef8b (plain)
1
2
3
4
5
6
7
8
9
10
11
const std = @import("std");
const zxc = @import("zxc.zig");

pub fn main() !void {
    var z = try zxc.init(.{
        .width = 400,
        .height = 224,
        .target_fps = 60,
    });
    defer z.deinit();
}