mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 22:27:43 +00:00
Script Object DNAs
This commit is contained in:
24
DataSpec/DNAMP1/ScriptObjects/Counter.hpp
Normal file
24
DataSpec/DNAMP1/ScriptObjects/Counter.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef _DNAMP1_COUNTER_HPP_
|
||||
#define _DNAMP1_COUNTER_HPP_
|
||||
|
||||
#include "../../DNACommon/DNACommon.hpp"
|
||||
#include "IScriptObject.hpp"
|
||||
#include "Parameters.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
namespace DNAMP1
|
||||
{
|
||||
struct Counter : IScriptObject
|
||||
{
|
||||
DECL_YAML
|
||||
String<-1> name;
|
||||
Value<atUint32> startValue; // needs verification
|
||||
Value<atUint32> maxValue;
|
||||
Value<bool> unknown1;
|
||||
Value<bool> unknown2;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user