2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CSAMUSHUD
|
|
|
|
#define _CSAMUSHUD
|
|
|
|
|
|
|
|
#include "types.h"
|
2022-10-05 18:05:56 +00:00
|
|
|
|
|
|
|
#include "MetroidPrime/HUD/CHUDMemoParms.hpp"
|
|
|
|
|
|
|
|
#include "rstl/string.hpp"
|
|
|
|
|
|
|
|
class CSamusHud {
|
|
|
|
public:
|
|
|
|
static void DisplayHudMemo(const rstl::wstring& text, const CHUDMemoParms& info);
|
2024-09-30 06:02:23 +00:00
|
|
|
static void ClearHudMemo() {
|
|
|
|
DisplayHudMemo(rstl::wstring_l(L""), CHUDMemoParms(0.f, true, true, true));
|
|
|
|
}
|
2022-10-05 18:05:56 +00:00
|
|
|
};
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CSAMUSHUD
|