CommonLibSSE (Parapets fork)
GFxImageLoader.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 GImageInfoBase;
8 
9  class GFxImageLoader : public GFxState
10  {
11  public:
12  inline static constexpr auto RTTI = RTTI_GFxImageLoader;
13 
14  virtual ~GFxImageLoader(); // 00
15 
16  // add
17  virtual GImageInfoBase* LoadImage(const char* a_url) = 0; // 01
18  };
19  static_assert(sizeof(GFxImageLoader) == 0x18);
20 }
Definition: GFxImageLoader.h:10
virtual ~GFxImageLoader()
virtual GImageInfoBase * LoadImage(const char *a_url)=0
static constexpr auto RTTI
Definition: GFxImageLoader.h:12
Definition: GFxState.h:9
Definition: GImageInfoBase.h:16
Definition: AbsorbEffect.h:6
constexpr REL::ID RTTI_GFxImageLoader
Definition: Offsets_RTTI.h:4842