mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:11:22 +00:00
Strongly enforces the type of the array and also allows size querying, etc, directly from the type.
13 lines
187 B
C++
13 lines
187 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include "Runtime/Input/CRumbleVoice.hpp"
|
|
|
|
namespace urde {
|
|
|
|
using RumbleFXTable = std::array<SAdsrData, 24>;
|
|
|
|
extern const RumbleFXTable RumbleFxTable;
|
|
|
|
}
|