Renamed the 'draw' module to 'gui'.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#include <assert.h>
|
||||
#include <stdbool.h>
|
||||
#include "../src/draw.h"
|
||||
#include "../src/gui.h"
|
||||
|
||||
void test_draw() {
|
||||
void test_gui() {
|
||||
assert(true);
|
||||
}
|
||||
@@ -8,7 +8,7 @@ int main(int argc, const char *argv[]) {
|
||||
test_card();
|
||||
test_cursor();
|
||||
test_deck();
|
||||
test_draw();
|
||||
test_gui();
|
||||
test_frame();
|
||||
test_game();
|
||||
test_keyboard();
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
void test_card();
|
||||
void test_cursor();
|
||||
void test_deck();
|
||||
void test_draw();
|
||||
void test_gui();
|
||||
void test_frame();
|
||||
void test_game();
|
||||
void test_keyboard();
|
||||
|
||||
Reference in New Issue
Block a user