9 lines
178 B
C
9 lines
178 B
C
|
#include "game.h"
|
||
|
#include "commands.h"
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(int argc, char** argv){
|
||
|
struct game* game = init_game();
|
||
|
init_screen(game);
|
||
|
world_event(game);
|
||
|
}
|