Wwise Audio Tools  0.5.2
Tools for working with Wwise file types
w3sc.hpp
Go to the documentation of this file.
1 
11 #ifndef WWTOOLS_W3SC_HPP
12 #define WWTOOLS_W3SC_HPP
13 
14 #include <string>
15 #include <vector>
16 
17 #include "kaitai/kaitaistream.h"
18 #include "kaitai/structs/w3sc.h"
19 
25 namespace wwtools::w3sc {
32 std::string get_info(const std::string &indata);
33 
40 void create(const std::vector<std::pair<std::string, std::string>> &files,
41  std::ostream &os);
42 } // namespace wwtools::w3sc
43 
44 #endif // WWTOOLS_W3SC_HPP
contains helper functions for The Witcher 3 sound cache files
std::string get_info(const std::string &indata)
get the info string
Definition: w3sc.cpp:105
void create(const std::vector< std::pair< std::string, std::string >> &files, std::ostream &os)
create a sound cache file from BNK and WEM files
Definition: w3sc.cpp:127