removed test template

master
sam lovelace 2021-11-27 22:18:18 +00:00
parent a6a83e546e
commit 6509fbd1d8
2 changed files with 2 additions and 6 deletions

View File

@ -91,7 +91,7 @@ pub const Window = struct {
_ = self;
c.glfwSwapInterval(@enumToInt(mode));
}
pub const VsyncMode = enum(c_int) {
disabled = 0,
enabled = 1,

View File

@ -14,8 +14,4 @@ pub fn main() anyerror!void {
window.update();
window.swapBuffers();
}
}
test "basic test" {
try std.testing.expectEqual(10, 3 + 7);
}
}