mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
17 lines
340 B
C++
17 lines
340 B
C++
#ifndef EGG_UTIL_EXCEPTION_H
|
|
#define EGG_UTIL_EXCEPTION_H
|
|
#include "types_egg.h"
|
|
#include <revolution/KPAD/KPAD.h>
|
|
|
|
namespace EGG
|
|
{
|
|
struct Exception
|
|
{
|
|
typedef void (*UserCallback)(KPADStatus *);
|
|
|
|
static Exception * create(u16, u16, u16, Heap *);
|
|
static UNKTYPE setUserCallBack(UserCallback);
|
|
};
|
|
}
|
|
|
|
#endif |