git » fp-git.git » commit 57dd06f

tile ascii dummy drawing idea

author ecalot
2004-07-25 03:15:17 UTC
committer ecalot
2004-07-25 03:15:17 UTC
parent 205d8bf17a9e32b73c293a6e8c453d05fe94ac37

tile ascii dummy drawing idea

FP/src/res/maps.c +6 -0

diff --git a/FP/src/res/maps.c b/FP/src/res/maps.c
index dbfaaaa..c3e8c51 100644
--- a/FP/src/res/maps.c
+++ b/FP/src/res/maps.c
@@ -84,6 +84,12 @@ int levelUse(void* level) {
 	return level==NULL;
 }
 
+tTile levelGetTile(tRoom* room,int x, int y) {
+	tTile result;
+	return result;
+}
+
+
 tRoom levelGetRoom(tRoomId roomId) {
 	tRoom result;
 	tRoomId roomAux;