Skip to content
Snippets Groups Projects
Select Git revision
  • f25e9a68d91a14fc5d7100bef6ad31544d141b02
  • master default
  • prez
3 results

index.html

Blame
  • map.h 193 B
    #ifndef MAP_HEADER_
    #define MAP_HEADER_
    
    #include "main.h"
    
    #define MAPSIZE 20
    
    #define TREE 1
    #define WATER 2
    
    extern int map[MAPSIZE][MAPSIZE];
    
    void readMapFromFile(char * filename);
    
    #endif