godot/thirdparty/embree/kernels/bvh/bvh_collider.h

// Copyright 2009-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include "bvh.h"
#include "../geometry/trianglev.h"
#include "../geometry/object.h"

namespace embree
{
  namespace isa
  {
    template<int N>
      class BVHNCollider
    {};

    template<int N>
      class BVHNColliderUserGeom : public BVHNCollider<N>
    {};
  }
}