l3tde/src/main.c

13 lines
169 B
C
Raw Permalink Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
2021-12-08 12:55:26 +01:00
#include <l3tde/game.h>
2021-12-06 18:22:37 +01:00
int
main () {
time_t t;
srand((unsigned) time(&t));
2021-12-08 12:55:26 +01:00
l3tde_game_init ();
2021-12-06 18:22:37 +01:00
}