16 lines
228 B
C
16 lines
228 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include <raylib.h>
|
|
#include <raymath.h>
|
|
|
|
#include "config.h"
|
|
#include "types.h"
|
|
#include "mapgen.h"
|
|
|
|
int gen_map(Game *game){
|
|
|
|
}
|