mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-01 09:12:37 -06:00
* Fix Windmill Isle Act 1 (Night) chip 'hint' not being shown * code style adjustments * Fix Apotos entrance gate first time Chip hint appearing with hints disabled --------- Co-authored-by: Hyper <34012267+hyperbx@users.noreply.github.com>
14 lines
191 B
C++
14 lines
191 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace SWA::Message
|
|
{
|
|
class MsgRequestHelp
|
|
{
|
|
public:
|
|
SWA_INSERT_PADDING(0x1C);
|
|
Hedgehog::Base::CSharedString m_Name;
|
|
};
|
|
}
|