mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-20 10:15:16 +00:00
23 lines
554 B
C
23 lines
554 B
C
|
#pragma once
|
||
|
|
||
|
#include "prim/seadDelegate.h"
|
||
|
#include "prim/seadDelegateEventSlot.h"
|
||
|
|
||
|
namespace sead
|
||
|
{
|
||
|
class AssertConfig
|
||
|
{
|
||
|
public:
|
||
|
using AssertEvent = DelegateEvent<const char*>;
|
||
|
|
||
|
static void registerCallback(AssertEvent::Slot& slot);
|
||
|
static void unregisterCallback(AssertEvent::Slot& slot);
|
||
|
static void registerFinalCallback(IDelegate1<const char*>* cb);
|
||
|
static void execCallbacks(const char* assertMessage);
|
||
|
|
||
|
private:
|
||
|
static AssertEvent sAssertEvent;
|
||
|
static IDelegate1<char const*>* sFinalCallback;
|
||
|
};
|
||
|
} // namespace sead
|