10 lines
115 B
C
10 lines
115 B
C
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include "../lib/game.h"
|
|
|
|
void test_game() {
|
|
assert(true);
|
|
|
|
return;
|
|
}
|