2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 07:07:42 +00:00

Add missing data formats (still need PATH), update submodules

This commit is contained in:
2017-05-22 04:24:24 -07:00
parent 5f5c1ce2f1
commit a612f0dc66
15 changed files with 324 additions and 27 deletions

View File

@@ -0,0 +1,27 @@
#ifndef __DNAMP1_SNOWFORCES_HPP__
#define __DNAMP1_SNOWFORCES_HPP__
#include <vector>
#include "DNAMP1.hpp"
namespace DataSpec
{
namespace DNAMP1
{
struct SnowForces : BigYAML
{
DECL_YAML
struct Force : BigYAML
{
DECL_YAML
Value<float> gravity;
Value<float> wind;
};
Value<Force> forces[256];
};
}
}
#endif // __DNAMP1_SNOWFORCES_HPP__