mach/platform: check for App functions in all platforms

This commit is contained in:
iddev5 2022-05-30 13:36:27 +05:30 committed by Stephen Gutekanst
parent 21c49ff9be
commit ff126c0054
3 changed files with 13 additions and 4 deletions

View file

@ -110,6 +110,11 @@ pub const BackingTimer = struct {
}
};
const common = @import("common.zig");
comptime {
common.checkApplication(App);
}
var app: App = undefined;
var engine: Engine = undefined;