15 lines
253 B
C++
15 lines
253 B
C++
#pragma once
|
|
|
|
namespace RE
|
|
{
|
|
class __declspec(novtable) TextureUpdateDone
|
|
{
|
|
public:
|
|
static constexpr auto RTTI{ RTTI::TextureUpdateDone };
|
|
static constexpr auto VTABLE{ VTABLE::TextureUpdateDone };
|
|
|
|
// add
|
|
virtual bool Update(); // 00
|
|
};
|
|
}
|