mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-17 06:31:22 +00:00
21 lines
267 B
C++
21 lines
267 B
C++
#ifndef __DNAMP1_MAZESEEDS_HPP__
|
|
#define __DNAMP1_MAZESEEDS_HPP__
|
|
|
|
#include <vector>
|
|
|
|
#include "DNAMP1.hpp"
|
|
|
|
namespace DataSpec
|
|
{
|
|
namespace DNAMP1
|
|
{
|
|
struct MazeSeeds : BigYAML
|
|
{
|
|
DECL_YAML
|
|
Value<atUint32> seeds[300];
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // __DNAMP1_MAZESEEDS_HPP__
|