コード例 #1
0
ファイル: ohut.cpp プロジェクト: Nitaym/zodengine
void OHut::UnSetMapImpassables(ZMap &tmap)
{
	int tx, ty;

	tx = loc.x / 16;
	ty = loc.y / 16;

	tmap.SetImpassable(tx, ty, false, true);
}
コード例 #2
0
ファイル: omapobject.cpp プロジェクト: capehill/zodengine
void OMapObject::SetMapImpassables(ZMap &tmap)
{
	int tx, ty;

	tx = loc.x / 16;
	ty = loc.y / 16;

	tmap.SetImpassable(tx, ty, true, true);
}