(svn r1714) Add missing include

This commit is contained in:
tron 2005-01-29 13:33:14 +00:00
parent 5885b31bb4
commit a2de96abc0
1 changed files with 2 additions and 0 deletions

2
map.h
View File

@ -1,6 +1,8 @@
#ifndef MAP_H
#define MAP_H
#include "stdafx.h"
#define TILE_FROM_XY(x,y) (int)((((y) >> 4) << MapLogX()) + ((x) >> 4))
#define TILE_XY(x,y) (((y) << MapLogX()) + (x))