LeviLamina
Loading...
Searching...
No Matches
PropertyValues.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct PropertyValues {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 24, ::std::vector<int>> mIntValues;
10 ::ll::TypedStorage<8, 24, ::std::vector<float>> mFloatValues;
11 ::ll::TypedStorage<8, 32, ::std::vector<bool>> mBoolValues;
12 ::ll::TypedStorage<8, 24, ::std::vector<uint64>> mEnumIndexValues;
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 PropertyValues& operator=(PropertyValues const&);
18 PropertyValues();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI PropertyValues(::PropertyValues const&);
24
25 MCAPI ::PropertyValues& operator=(::PropertyValues&&);
26
27 MCAPI void resize(uint64 numInts, uint64 numFloats, uint64 numBools, uint64 numEnums);
28
29 MCAPI ~PropertyValues();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor(::PropertyValues const&);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43};