LeviLamina
Loading...
Searching...
No Matches
float3.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace renoir {
6
7struct float3 {
8public:
9 // member variables
10 // NOLINTBEGIN
11 union {
12 struct {
13 ::ll::UntypedStorage<4, 4> mUnkeb540c;
14 ::ll::UntypedStorage<4, 4> mUnk50ebc2;
15 ::ll::UntypedStorage<4, 4> mUnkbe6ba8;
16 };
17 ::ll::UntypedStorage<4, 12> mUnkc243a6;
18 };
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 float3& operator=(float3 const&);
24 float3(float3 const&);
25 float3();
26};
27
28} // namespace renoir
Definition float3.h:7