Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/Scaleform/G/GFx_UserEventHandler.h
T
2026-05-30 18:33:24 +12:00

24 lines
463 B
C++

#pragma once
#include "Scaleform/G/GFx_State.h"
namespace Scaleform::GFx
{
class Event;
class Movie;
class __declspec(novtable) UserEventHandler :
public State // 00
{
public:
static constexpr auto GFX_STATE_TYPE{ StateType::kUserEventHandler };
UserEventHandler() :
State(StateType::kUserEventHandler)
{}
virtual void HandleEvent(class Movie* pmovie, const class Event& event) = 0;
};
static_assert(sizeof(UserEventHandler) == 0x18);
}