enforce code style warnings
This commit is contained in:
parent
c72a215afb
commit
54a49c2d60
10 changed files with 47 additions and 108 deletions
7
main.c
7
main.c
|
|
@ -4,18 +4,17 @@
|
|||
#include "kubo_context.h"
|
||||
#include "kubo_window.h"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
int main() {
|
||||
struct kubo_context context;
|
||||
kubo_context_init(&context);
|
||||
|
||||
kubo_window_init(&context);
|
||||
kubo_window_init();
|
||||
|
||||
while (!kubo_window_should_close(&context)) {
|
||||
kubo_window_tick(&context);
|
||||
}
|
||||
|
||||
kubo_window_cleanup(&context);
|
||||
kubo_window_cleanup();
|
||||
kubo_context_cleanup(&context);
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue