Skip to content

Commit

Permalink
Update QuickSaveLoadHandler.h
Browse files Browse the repository at this point in the history
  • Loading branch information
digital-apple authored and powerof3 committed Oct 4, 2024
1 parent 658a259 commit 1e0c7f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/RE/Q/QuickSaveLoadHandler.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once

#include "RE/M/MenuEventHandler.h"

namespace RE
{
class ButtonEvent;
Expand All @@ -14,16 +16,14 @@ namespace RE
inline static constexpr auto RTTI = RTTI_QuickSaveLoadHandler;
inline static constexpr auto VTABLE = VTABLE_QuickSaveLoadHandler;

virtual ~QuickSaveLoadHandler() = default; // 00
~QuickSaveLoadHandler() override; // 00

// override (MenuEventHandler)
bool CanProcess(InputEvent* a_event) override; // 01
bool ProcessKinect(KinectEvent* a_event) override; // 02
bool ProcessThumbstick(ThumbstickEvent* a_event) override; // 03
bool ProcessMouseMove(MouseMoveEvent* a_event) override; // 04
bool ProcessButton(ButtonEvent* a_event) override; // 05

private:
KEEP_FOR_RE()
};
static_assert(sizeof(QuickSaveLoadHandler) == 0x10);
}

0 comments on commit 1e0c7f2

Please sign in to comment.