1
1
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
240 B

#ifndef ENVIRO_H
#define ENVIRO_H
#include "vect.h"
#include "types.h"
struct environment get_scene_at(Vect coordinate, int seed);
int destroy_environment(struct environment *e);
const struct environment *get_scene_watch(void);
#endif