CommonLibVR
hkpRayCollidableFilter.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  class hkpCollidable;
6 
7  struct hkpWorldRayCastInput;
8 
10  {
11  public:
12  inline static constexpr auto RTTI = RTTI_hkpRayCollidableFilter;
13  inline static constexpr auto VTABLE = VTABLE_hkpRayCollidableFilter;
14 
15  virtual ~hkpRayCollidableFilter(); // 00
16 
17  // add
18  virtual bool IsCollisionEnabled(const hkpWorldRayCastInput& a_input, const hkpCollidable& a_collidable) const = 0; // 01
19  private:
20  KEEP_FOR_RE()
21  };
22  static_assert(sizeof(hkpRayCollidableFilter) == 0x08);
23 }
#define KEEP_FOR_RE()
Definition: PCH.h:713
Definition: hkpCollidable.h:13
Definition: hkpRayCollidableFilter.h:10
static constexpr auto VTABLE
Definition: hkpRayCollidableFilter.h:13
virtual bool IsCollisionEnabled(const hkpWorldRayCastInput &a_input, const hkpCollidable &a_collidable) const =0
static constexpr auto RTTI
Definition: hkpRayCollidableFilter.h:12
Definition: AbsorbEffect.h:6
constexpr std::array< REL::ID, 1 > VTABLE_hkpRayCollidableFilter
Definition: Offsets_VTABLE.h:14325
constexpr REL::ID RTTI_hkpRayCollidableFilter(static_cast< std::uint64_t >(689817))
Definition: hkpWorldRayCastInput.h:8