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