Files
jak-project/game/overlord/srpc.h
T
2021-05-20 18:10:27 -04:00

24 lines
357 B
C++

#pragma once
#ifndef JAK_V2_SRPC_H
#define JAK_V2_SRPC_H
#include "common/common_types.h"
void srpc_init_globals();
constexpr int MUSIC_TWEAK_COUNT = 32;
struct MusicTweaks {
u32 TweakCount;
struct {
char MusicName[12];
u32 VolumeAdjust;
} MusicTweak[MUSIC_TWEAK_COUNT];
};
extern MusicTweaks gMusicTweakInfo;
#endif // JAK_V2_SRPC_H