summaryrefslogtreecommitdiff
path: root/src/wall.h
blob: 77bf0a35adfbf6ba344399986522b1670c4d1c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef WALL_H_
#define WALL_H_

#include "entity.h"

#define BLOCK_WIDTH 128
#define BLOCK_HEIGHT 128

void add_wall(float xpos, float ypos, int tile);

#endif // WALL_H_