CommonLibSSE (powerof3)
GFxLogBase.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/G/GFxLogConstants.h"
4 
5 namespace RE
6 {
7  template <class Derived>
8  class GFxLogBase : public GFxLogConstants
9  {
10  public:
11  virtual ~GFxLogBase() {} // 00
12 
13  // add
14  [[nodiscard]] virtual bool IsVerboseActionErrors() const { return true; } // 01
15  };
16  static_assert(sizeof(GFxLogBase<void*>) == 0x8);
17 }
Definition: GFxLogBase.h:9
virtual ~GFxLogBase()
Definition: GFxLogBase.h:11
virtual bool IsVerboseActionErrors() const
Definition: GFxLogBase.h:14
Definition: GFxLogConstants.h:6
Definition: AbsorbEffect.h:6