CommonLibSSE (powerof3)
BSAnimNote.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/N/NiObject.h"
4 
5 namespace RE
6 {
7  class BSAnimNote : public NiObject
8  {
9  public:
10  inline static constexpr auto RTTI = RTTI_BSAnimNote;
11  inline static constexpr auto Ni_RTTI = NiRTTI_BSAnimNote;
12  inline static constexpr auto VTABLE = VTABLE_BSAnimNote;
13 
14  enum class AnimNoteType
15  {
16  kInvalid = 0,
17  kGrabIK = 1,
18  kLookIK = 2
19  };
20 
21  ~BSAnimNote() override = 0; // 00
22 
23  // override (NiObject)
24  const NiRTTI* GetRTTI() const override; // 02
25  NiObject* CreateClone(NiCloningProcess& a_cloning) override; // 17 - { return this; }
26  void LoadBinary(NiStream& a_stream) override; // 18
27  void LinkObject(NiStream& a_stream) override; // 19 - { NiObject::LinkObject(a_stream); }
28  bool RegisterStreamables(NiStream& a_stream) override; // 1A - { return NiObject::RegisterStreamables(a_stream); }
29  void SaveBinary(NiStream& a_stream) override; // 1B
30  bool IsEqual(NiObject* a_object) override; // 1C
31 
32  // add
33  virtual void Unk_25(void); // 25
34  };
35  //static_assert(sizeof(BSAnimNote) == 0x);
36 }
Definition: BSAnimNote.h:8
~BSAnimNote() override=0
void LinkObject(NiStream &a_stream) override
bool RegisterStreamables(NiStream &a_stream) override
AnimNoteType
Definition: BSAnimNote.h:15
static constexpr auto Ni_RTTI
Definition: BSAnimNote.h:11
void LoadBinary(NiStream &a_stream) override
bool IsEqual(NiObject *a_object) override
static constexpr auto VTABLE
Definition: BSAnimNote.h:12
NiObject * CreateClone(NiCloningProcess &a_cloning) override
static constexpr auto RTTI
Definition: BSAnimNote.h:10
const NiRTTI * GetRTTI() const override
void SaveBinary(NiStream &a_stream) override
virtual void Unk_25(void)
Definition: NiCloningProcess.h:10
Definition: NiObject.h:37
Definition: NiRTTI.h:6
Definition: NiStream.h:29
Definition: AbsorbEffect.h:6
constexpr REL::ID NiRTTI_BSAnimNote(static_cast< std::uint64_t >(524418))
constexpr std::array< REL::ID, 1 > VTABLE_BSAnimNote
Definition: Offsets_VTABLE.h:8941
constexpr REL::ID RTTI_BSAnimNote(static_cast< std::uint64_t >(690576))