mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
21 lines
260 B
C++
21 lines
260 B
C++
#include <cstdint>
|
|
#include <cstdlib>
|
|
|
|
#include "usdc_serializer.hh"
|
|
|
|
namespace tinyusdz {
|
|
|
|
bool WriteUSDCHeader(std::vector<uint8_t> *output) {
|
|
// header = 88bytes
|
|
|
|
}
|
|
|
|
|
|
} // namespace tinyusdz
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
return EXIT_SUCCESS;
|
|
|
|
};
|