-
dg authored
fix snakes fix ammo encumberance better bree git-svn-id: http://svn.net-core.org/repos/t-engine4@379 51575b47-30f0-44d4-a5cc-537603b46e54
dg authoredfix snakes fix ammo encumberance better bree git-svn-id: http://svn.net-core.org/repos/t-engine4@379 51575b47-30f0-44d4-a5cc-537603b46e54
map.h 436 B
#ifndef _MAP_H_
#define _MAP_H_
#include <gl.h>
typedef struct {
GLuint **grids_terrain;
GLuint **grids_actor;
GLuint **grids_object;
GLuint **grids_trap;
bool **grids_seens;
bool **grids_remembers;
bool **grids_lites;
bool multidisplay;
// Map parameters
float obscure_r, obscure_g, obscure_b, obscure_a;
// Map size
int w;
int h;
int tile_w, tile_h;
// Scrolling
int mx, my, mwidth, mheight;
} map_type;
#endif