mirror of
https://github.com/zeldaret/ph
synced 2026-05-29 08:42:55 -04:00
16 lines
323 B
C++
16 lines
323 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
typedef u32 SfxId;
|
|
enum SfxId_ {
|
|
SfxId_FanfareDefault = 0x28,
|
|
SfxId_FanfareRupee = 0x29,
|
|
SfxId_FanfareGoldRupee = 0x2a,
|
|
SfxId_FanfareRupoor = 0x2b,
|
|
SfxId_FanfareNothing = 0x2c,
|
|
SfxId_FanfareHeartContainer = 0x2d,
|
|
SfxId_FanfareGem = 0x2e,
|
|
};
|