LeviLamina
Loading...
Searching...
No Matches
Shape.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace SharedTypes::v1_21_110 { struct Box; }
8// clang-format on
9
10namespace SharedTypes::v1_21_110 {
11
12struct Shape {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 24, ::std::vector<::SharedTypes::v1_21_110::Box>> mBoxes;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 Shape& operator=(Shape const&);
22 Shape(Shape const&);
23 Shape();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI ::SharedTypes::v1_21_110::Shape& operator=(::SharedTypes::v1_21_110::Shape&&);
29 // NOLINTEND
30};
31
32} // namespace SharedTypes::v1_21_110
Definition Box.h:10
Definition Shape.h:12