mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 03:45:46 +01:00
the comment was using single-line comments, I prefer multi-line comments now. This bothered me for much too long.
20 lines
410 B
C
20 lines
410 B
C
/* Copyright (c) 2025 Quinn
|
|
* Licensed under the MIT Licence. See LICENSE for details */
|
|
#define GLAD_GL_IMPLEMENTATION
|
|
#include <glad/gl.h>
|
|
#undef GLAD_GL_IMPLEMENTATION
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "dat.h" // contains the test data
|
|
#include "test.h"
|
|
|
|
int main(void) {
|
|
// get test count
|
|
size_t n = sizeof(tests) / sizeof(tests[0]);
|
|
|
|
return exec_tests(tests, n);
|
|
}
|