diff --git a/server/gameserver/mapinstance.cc b/server/gameserver/mapinstance.cc index a52c3f2d..d88c3976 100644 --- a/server/gameserver/mapinstance.cc +++ b/server/gameserver/mapinstance.cc @@ -157,6 +157,15 @@ void MapInstance::Init() dtTileRef tile_ref = navmesh_->getTileRefAt(0, 0, 0); int i = 0; + + a8::Vec3 start; + a8::Vec3 end; + a8::Vec3 hit_point; + start.x = 10; + start.y = 10; + start.z = 10; + end = start; + auto a = Raycast(0, start, end, hit_point); } #endif }