LeviLamina
Loading...
Searching...
No Matches
NodeParseData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ParticleSystem {
6
7struct NodeParseData {
8public:
9 // NodeParseData inner types declare
10 // clang-format off
11 struct Node;
12 // clang-format on
13
14 // NodeParseData inner types define
15 struct Node {
16 public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, float> mLeftValue;
20 ::ll::TypedStorage<4, 4, float> mRightValue;
21 ::ll::TypedStorage<4, 4, float> mLeftSlope;
22 ::ll::TypedStorage<4, 4, float> mRightSlope;
23 // NOLINTEND
24 };
25
26public:
27 // member variables
28 // NOLINTBEGIN
29 ::ll::TypedStorage<8, 24, ::std::vector<::std::pair<float, ::ParticleSystem::NodeParseData::Node>>> mNodeList;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ~NodeParseData();
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
44
45} // namespace ParticleSystem
Definition NodeParseData.h:15
Definition NodeParseData.h:7