0
RPG MAP
I am making a RPG game and i dont know how exactly the map is going to work. Can someone please help me out?
3 Réponses
+ 5
https://code.sololearn.com/cd27b2ddlvN7/?ref=app
https://code.sololearn.com/cM0OntoPfmlo/?ref=app
These are my two codes with map system
+ 5
I actually highly recommend a map array like
char map[20][20];
and use it like
map[x][y]='@';
And make a function to print the map properly on console