Skip to content
Snippets Groups Projects
Commit 0636da13 authored by Ian Prins's avatar Ian Prins
Browse files

Implement terrain.h

parent 2448e489
No related branches found
No related tags found
No related merge requests found
#include "include/terrain.h"
Terrain::Terrain(char character, Terrain::Visibility vis, Terrain::Passability pass)
: character(character)
, visible(vis)
, passable(pass)
{}
Terrain::Passability Terrain::isPassable() {
return passable;
return arglebargle;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment