mirror of
https://github.com/libAthena/athena.git
synced 2025-05-16 20:31:34 +00:00
15 lines
221 B
C++
15 lines
221 B
C++
#include <stdint.h>
|
|
#include <vector>
|
|
#include <Athena/DNA.hpp>
|
|
|
|
|
|
using namespace Athena;
|
|
|
|
struct ANCSFile : public io::DNA<BigEndian>
|
|
{
|
|
Value<atUint32> var32;
|
|
Value<atUint16> var16;
|
|
Vector<atUint32> vec;
|
|
};
|
|
|