Esempio n. 1
0
bool RegionPagerBase::GetSolid(int x, int y) {
	Region* ptr = GetRegion(x, y);
	return ptr->GetSolid(x - ptr->GetX(), y - ptr->GetY());
}
Esempio n. 2
0
//Bug Origin?
Region::type_t RegionPagerBase::GetTile(int x, int y, int z) {
	Region* ptr = GetRegion(x, y);
	return ptr->GetTile(x - ptr->GetX(), y - ptr->GetY(), z);
}