CommonLibSSE (powerof3)
GFxExternalInterface.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/G/GFxState.h"
4 
5 namespace RE
6 {
7  class GFxMovieView;
8  class GFxValue;
9 
11  {
12  public:
13  inline static constexpr auto RTTI = RTTI_GFxExternalInterface;
14 
16  GFxState(StateType::kExternalInterface)
17  {}
18 
19  ~GFxExternalInterface() override = default; // 00
20 
21  // add
22  virtual void Callback(GFxMovieView* a_movieView, const char* a_methodName, const GFxValue* a_args, std::uint32_t a_numArgs) = 0; // 01
23  };
24  static_assert(sizeof(GFxExternalInterface) == 0x18);
25 }
Definition: GFxExternalInterface.h:11
~GFxExternalInterface() override=default
virtual void Callback(GFxMovieView *a_movieView, const char *a_methodName, const GFxValue *a_args, std::uint32_t a_numArgs)=0
static constexpr auto RTTI
Definition: GFxExternalInterface.h:13
GFxExternalInterface()
Definition: GFxExternalInterface.h:15
Definition: GFxMovieView.h:24
Definition: GFxState.h:9
StateType
Definition: GFxState.h:15
Definition: GFxValue.h:90
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_GFxExternalInterface
Definition: Offsets_RTTI.h:4839