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.
 
 
 
 
 

16 lines
332 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);
extern struct environment *environment_watch;
void swap_palletes(struct environment *e);
#endif