git » fp-git.git » master » tree

[master] / PV4 / src / pop1tile.cpp

#include "pop1tile.h"

Pop1Tile::Pop1Tile(unsigned char code, unsigned char back) {
 this->code=code;
 this->back=back;
}

int Pop1Tile::getDoorEvent() {
	return this->back;
}

int Pop1Tile::getAttr() {
	return this->back;
}

int Pop1Tile::getImg() {
	return 0;
}

int Pop1Tile::getCode() {
	return this->code;
}