mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-22 13:44:44 +00:00
17 lines
379 B
C++
17 lines
379 B
C++
#ifndef LOADDEF_H
|
|
#define LOADDEF_H
|
|
|
|
#include <istream>
|
|
#include <string_view>
|
|
|
|
#include "alspan.h"
|
|
|
|
#include "makemhr.h"
|
|
|
|
|
|
bool LoadDefInput(std::istream &istream, const al::span<const char> startbytes,
|
|
const std::string_view filename, const uint fftSize, const uint truncSize, const uint outRate,
|
|
const ChannelModeT chanMode, HrirDataT *hData);
|
|
|
|
#endif /* LOADDEF_H */
|