CommonLibSSE (Parapets fork)
hkpPhantomListener.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  class hkpPhantom;
6 
8  {
9  public:
10  inline static constexpr auto RTTI = RTTI_hkpPhantomListener;
11 
12  virtual ~hkpPhantomListener(); // 00
13 
14  virtual void PhantomAddedCallback(hkpPhantom* a_phantom); // 01 - { return; }
15  virtual void PhantomRemovedCallback(hkpPhantom* a_phantom); // 02 - { return; }
16  virtual void PhantomShapeSetCallback(hkpPhantom* a_phantom); // 03
17  virtual void PhantomDeletedCallback(hkpPhantom* a_phantom); // 04 - { return; }
18  };
19  static_assert(sizeof(hkpPhantomListener) == 0x8);
20 }
Definition: hkpPhantomListener.h:8
virtual void PhantomAddedCallback(hkpPhantom *a_phantom)
virtual void PhantomShapeSetCallback(hkpPhantom *a_phantom)
virtual void PhantomDeletedCallback(hkpPhantom *a_phantom)
virtual void PhantomRemovedCallback(hkpPhantom *a_phantom)
static constexpr auto RTTI
Definition: hkpPhantomListener.h:10
virtual ~hkpPhantomListener()
Definition: hkpPhantom.h:15
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_hkpPhantomListener
Definition: Offsets_RTTI.h:7684