LeviLamina
Loading...
Searching...
No Matches
PropertyValues.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 PropertyValues& operator=(PropertyValues const&);
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI ::PropertyValues& operator=(::PropertyValues&&);
25
26 MCAPI void resize(uint64 numInts, uint64 numFloats, uint64 numBools, uint64 numEnums);
27
28 MCAPI ~PropertyValues();
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCAPI void $dtor();
35 // NOLINTEND
36};
Definition PropertyValues.h:5
Definition Alias.h:14