forked from ExileLord/Open-GHTCP
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFloatArrayNode.cs
48 lines (41 loc) · 1.02 KB
/
FloatArrayNode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System.Collections.Generic;
using GHNamespaceE;
namespace GHNamespaceB
{
public class FloatArrayNode : ZzUnkNode278<FloatValueNode>
{
public float this[int int0]
{
get => ((FloatValueNode) Nodes[int0]).Float0;
set => ((FloatValueNode) Nodes[int0]).Float0 = value;
}
public FloatArrayNode()
{
vmethod_0();
}
public FloatArrayNode(IEnumerable<float> ienumerable0)
{
method_11(ienumerable0);
}
public override int vmethod_1()
{
return 13;
}
public void method_11(IEnumerable<float> ienumerable0)
{
foreach (float float_ in ienumerable0)
{
Nodes.Add(new FloatValueNode(float_));
}
vmethod_0();
}
public override byte vmethod_15()
{
return 2;
}
public override string GetNodeText()
{
return "Float Array";
}
}
}