コード例 #1
0
bool RegionPagerBase::GetSolid(int x, int y) {
	Region* ptr = GetRegion(x, y);
	return ptr->GetSolid(x - ptr->GetX(), y - ptr->GetY());
}
コード例 #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);
}